Getting Started
The template folder Sland 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.
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/fontawesome.5.9.0.min.css">
<!--====== Flaticon CSS ======-->
<link rel="stylesheet" href="assets/css/flaticon.css">
<!--====== Bootstrap css ======-->
<link rel="stylesheet" href="assets/css/bootstrap.4.5.3.min.css">
<!--====== Magnific Popup ======-->
<link rel="stylesheet" href="assets/css/magnific-popup.css">
<!--====== Slick Slider ======-->
<link rel="stylesheet" href="assets/css/slick.css">
<!--====== Animate CSS ======-->
<link rel="stylesheet" href="assets/css/animate.min.css">
<!--====== Nice Select ======-->
<link rel="stylesheet" href="assets/css/nice-select.css">
<!--====== Padding Margin ======-->
<link rel="stylesheet" href="assets/css/spacing.min.css">
<!--====== Menu css ======-->
<link rel="stylesheet" href="assets/css/menu.css">
<!--====== Main css ======-->
<link rel="stylesheet" href="assets/css/style.css">
<!--====== Responsive css ======-->
<link rel="stylesheet" href="assets/css/responsive.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.4.5.3.min.js"></script>
<!--====== Appear js ======-->
<script src="assets/js/appear.js"></script>
<!--====== WOW js ======-->
<script src="assets/js/wow.min.js"></script>
<!--====== Isotope ======-->
<script src="assets/js/isotope.pkgd.min.js"></script>
<!--====== Circle Progress ======-->
<script src="assets/js/circle-progress.min.js"></script>
<!--====== Image loaded ======-->
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<!--====== Nice Select ======-->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!--====== Magnific ======-->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!--====== Slick Slider ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== Main JS ======-->
<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:
<!--====== About Section Start ======-->
<section class="about-section rel z-1 pt-130 rpt-100 pb-45 rpb-15">
<div class="container">
<div class="row align-items-center">
<div class="col-xl-7 col-lg-6">
<div class="about-image rmb-55 wow fadeInLeft delay-0-2s">
<img src="assets/images/about/what-we-provide.png" alt="About">
</div>
</div>
<div class="col-xl-5 col-lg-6">
<div class="about-content wow fadeInRight delay-0-2s">
<div class="section-title mb-25">
<span class="sub-title">What We Provides</span>
<h2>User Friendly Experience For Your Attendies</h2>
</div>
<p>Sed ut perspiciatis unde omnis iste natus error voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ainventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit sed <uia consequuntur magni dolores eos qui ratione voluptatem</p>
<ul class="list-style-one mt-30 mb-45">
<li>30-day free trial of our premium plan</li>
<li>100% Free - No payments required</li>
<li>Lifetime Upgradate</li>
</ul>
<a href="contact.html" class="theme-btn">Get Started <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
</div>
</section>
<!--====== About Section End ======-->
Fonts Used
Font code can be found in the "style.css" file path: assets/css/style.css
// Font Family
--base-font: 'Inter', sans-serif;
--heading-font: 'Poppins', sans-serif;
Main Color Change Option
File path: assets/css/style.css
// colors
--base-color: #5b5675;
--heading-color: #141125;
--primary-color: #5138ee;
--light-color: #f8f7fc;
--yellow-color: #ffc800;
--border-color: #edebfd;
Slick Edit Option
File path: assets/js/script.js
// 08. Feedback Slider One
if ($('.feedback-wrap').length) {
$('.feedback-wrap').slick({
dots: true,
infinite: false,
autoplay: true,
fade: true,
autoplaySpeed: 5000,
arrows: false,
centerMode: false,
speed: 1000,
slidesToShow: 1,
slidesToScroll: 1,
});
}
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
// 15. 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
// 16. 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 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
Flaticon