Getting Started
The template folder Qolle is available inside the downloaded zip file. Need to unzip the zip file to find the template also the documentation folder.
The files and folders structure is similar to the following:
- assets/css — folder with CSS files.
- assets/fonts — folder with fonts files.
- assets/images — folder with image files.
- assets/js — folder with Javascript files.
- assets/php — folder with php files.
- assets/sass — folder with SASS files.
Upload the template files to the server with the help of one of the FTP-clients like FileZilla.
Files Edit & Upload:
Individual pages can be customized by opening in a code editor such as VS Code. Once all the customization completed then to make the website live you need to upload the updated project files to the hosting server for your own domain. The files can be uploaded using FTP client such as FileZilla.
HEAD CSS Structure
Followings are the css files which loaded inside the Head Section:
<!--====== Font Awesome ======-->
<link rel="stylesheet" href="assets/css/font-awesome-5.9.0.min.css">
<!--====== Bootstrap ======-->
<link rel="stylesheet" href="assets/css/bootstrap-4.5.3.min.css">
<!--====== Magnific Popup ======-->
<link rel="stylesheet" href="assets/css/magnific-popup.min.css">
<!--====== Nice Select ======-->
<link rel="stylesheet" href="assets/css/nice-select.min.css">
<!--====== Animate ======-->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!--====== Slick ======-->
<link rel="stylesheet" href="assets/css/slick.min.css">
<!--====== Main Style ======-->
<link rel="stylesheet" href="assets/css/style.css">
Javascript Structure
Followings are the JS files which loaded before the end of HEAD or BODY Section:.
<!--====== Jquery ======-->
<script src="assets/js/jquery-3.6.0.min.js"></script>
<!--====== Bootstrap ======-->
<script src="assets/js/bootstrap.min.js"></script>
<!--====== Slick ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== Magnific Popup ======-->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!--====== Nice Select ======-->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!-- AjaxChimp Min JS -->
<script src="assets/js/jquery.ajaxchimp.min.js"></script>
<!-- Form Validator Min JS -->
<script src="assets/js/form-validator.min.js"></script>
<!-- Contact Form Min JS -->
<script src="assets/js/contact-form-script.js"></script>
<!-- WOW Animation -->
<script src="assets/js/wow.min.js"></script>
<!-- Custom script -->
<script src="assets/js/script.js"></script>
HTML Structure
The general template structure is the same throughout the template and each of the part is under a section with a section id name. Here is the general structure:
<!-- Hero Section Start -->
<section class="hero-section rel z-1 bg-dark-blue pt-25 rpt-5" id="home">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8 col-md-10 col-sm-11">
<div class="hero-content text-white mt-250 mb-215">
<span class="sub-title wow fadeInUp delay-0-2s">Welcome to Qolle</span>
<h1 class="wow fadeInUp delay-0-4s">Creative Solutions For Web Design and Development</h1>
<p class="wow fadeInUp delay-0-6s">Sed ut perspiciatis unde omnis iste natus error siluptatem <ccusantium doloremque laudantium totam rem</p>
<div class="hero-btn mt-35 wow fadeInUp delay-0-8s">
<a href="#" class="theme-btn style-two">Start a Project <i class="fas fa-long-arrow-alt-right"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
Fonts Used
Font code can be found in the "_variables.sass" file path: assets/sass/_variables.sass
// Font Family
$base-font: 'Nunito', sans-serif
$heading-font: 'Quicksand', sans-serif
Main Color Change Option
File path: assets/sass/_variables.sass
// colors
$base-color: #696e7b
$heading-color: #1e266d
$heading-color-two: #293043
$primary-color: #0066ff
$secondary-color: #01c9f5
$light-color: #f7f6f9
$border-color: #eeeff1
How to Run SASS File
Please open the file Visual Studio Code Editor.
And following the video tutorial.
Here the Link: https://www.youtube.com/watch?v=0MWmv1Gvv5w
Contact Mail Change Option
File path: assets/php/form-process.php
$EmailTo = "yourmail@domain.com";
$Subject = "New Message Received";
Slick Edit Option
File path: assets/js/script.js
// 08. Feedback Slider
if ($('.feedback-logo-wrap').length) {
$('.feedback-logo-wrap').slick({
dots: false,
infinite: true,
autoplay: false,
autoplaySpeed: 5000,
arrows: false,
speed: 1000,
slidesToShow: 5,
slidesToScroll: 1,
focusOnSelect: true,
asNavFor: '.feedback-content-wrap',
responsive: [
{
breakpoint: 575,
settings: {
slidesToShow: 3,
}
},
]
});
}
if ($('.feedback-content-wrap').length) {
$('.feedback-content-wrap').slick({
dots: false,
infinite: false,
autoplay: false,
fade: true,
autoplaySpeed: 5000,
arrows: false,
centerMode: false,
speed: 1000,
slidesToShow: 1,
slidesToScroll: 1,
asNavFor: '.feedback-logo-wrap'
});
}
More Info please browser the link: Slick Docs Options
How to Hide Scroll Animation
Please remove or comment the below code file path: assets/js/script.js
// 10. WOW Animation
if ($('.wow').length) {
var wow = new WOW({
boxClass: 'wow', // animated element css class (default is wow)
animateClass: 'animated', // animation css class (default is animated)
offset: 0, // distance to the element when triggering the animation (default is 0)
mobile: false, // trigger animations on mobile devices (default is true)
live: true // act on asynchronously loaded content (default is true)
});
wow.init();
}
How to edit/off Preloader
Please remove or comment the below code file path: assets/js/script.js
// 11. Preloader
function handlePreloader() {
if ($('.preloader').length) {
$('.preloader').delay(200).fadeOut(500);
}
}
handlePreloader();
Also, please remove or comment the above code all HTML files
<!-- Preloader -->
<div class="preloader"></div>
Speed Optimization
Please optimize all images KB, MB also, use the image size following by placeholder file path: assets/images/..
- Tinypng
Please minify all CSS file path: assets/css/..
Please minify all JS file path: assets/js/..
How to Change Image?
Please go to the image file 'path: assets/images/...' replace the image which one you want following placeholder image size & name
How to Edit Especially For Flaticon
You won't able to add new flaticon except existing but you can if you want to add from scratch but existing will not work and it's the feature of flaticon. Flaticon.com
How to Add New Updates of Existing Template
After a certain time, we will update our project based on the latest technology but in your template, you need to update on your own if you want.
Credits
Note: All images are used for preview purpose only and not included in the final purchase files.
Images from:
https://www.freepik.com/
https://pixabay.com/
https://unsplash.com/
IconFont
Fontawesome