The template folder Wellern 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:

  1. assets/css — folder with CSS files.
  2. assets/fonts — folder with fonts files.
  3. assets/images — folder with image files.
  4. assets/js — folder with Javascript files.
  5. 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.

Followings are the css files which loaded inside the Head Section:


<!--====== Flaticon ======-->
<link rel="stylesheet" href="assets/css/flaticon.min.css">
<!--====== 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">
<!--====== jQuery UI ======-->
<link rel="stylesheet" href="assets/css/jquery-ui.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">

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>
<!--====== Appear Js ======-->
<script src="assets/js/appear.min.js"></script>
<!--====== Slick ======-->
<script src="assets/js/slick.min.js"></script>
<!--====== jQuery UI ======-->
<script src="assets/js/jquery-ui.min.js"></script>
<!--====== Isotope ======-->
<script src="assets/js/isotope.pkgd.min.js"></script>
<!--====== Images Loader ======-->
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<!--====== Nice Select ======-->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!--====== Magnific Popup ======-->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!--  WOW Animation -->
<script src="assets/js/wow.min.js"></script>
<!-- Custom script -->
<script src="assets/js/script.js"></script>

The Wellern is a responsive template and is based on the Bootstrap Framework. For more information you can check the Bootstrap CSS.

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:


<!-- Logo Section Start -->
<div class="logo-section pt-130 rpt-100 pb-80 rpb-50">
    <div class="container">
        <div class="logo-inner">
            <div class="logo-item wow fadeInUp delay-0-1s">
                <a href="contact.html"><img src="assets/images/client-logos/client-logo1.png" alt="Client Logo"></a>
            </div>
            <div class="logo-item wow fadeInUp delay-0-2s">
                <a href="contact.html"><img src="assets/images/client-logos/client-logo2.png" alt="Client Logo"></a>
            </div>
            <div class="logo-item wow fadeInUp delay-0-3s">
                <a href="contact.html"><img src="assets/images/client-logos/client-logo3.png" alt="Client Logo"></a>
            </div>
            <div class="logo-item wow fadeInUp delay-0-4s">
                <a href="contact.html"><img src="assets/images/client-logos/client-logo4.png" alt="Client Logo"></a>
            </div>
            <div class="logo-item wow fadeInUp delay-0-5s">
                <a href="contact.html"><img src="assets/images/client-logos/client-logo5.png" alt="Client Logo"></a>
            </div>
            <div class="logo-item wow fadeInUp delay-0-6s">
                <a href="contact.html"><img src="assets/images/client-logos/client-logo6.png" alt="Client Logo"></a>
            </div>
        </div>
    </div>
</div>
<!-- Logo Section End -->

Font code can be found in the "_variables.sass" file path: assets/sass/_variables.sass


// Font Family
$base-font: 'Nunito Sans', sans-serif
$heading-font: 'Raleway', sans-serif

File path: assets/sass/_variables.sass


// colors
$base-color: #415674
$heading-color: #262d3d
$primary-color: #00cc83
$secondary-color: #204ecf
$light-color: #f7f7f7
$yellow-color: #FFB113
$border-color: #e9eaeb
$blue-color: #2467ec

Please open the file Visual Studio Code Editor.

And following the video tutorial.

Here the Link: https://www.youtube.com/watch?v=0MWmv1Gvv5w

File path: assets/js/script.js



// 12. Coach Slider 
if ($('.coach-slider').length) {
    $('.coach-slider').slick({
        slidesToShow: 3,
        slidesToScroll: 1,
        infinite: true,
        speed: 400,
        autoplay: true,
        arrows: false,
        dots: true,
        autoplaySpeed: 5000,
        responsive: [
            {
                breakpoint: 1199,
                settings: {
                    slidesToShow: 2,
                }
            },
            {
                breakpoint: 767,
                settings: {
                    slidesToShow: 1,
                }
            }
        ]
    });
}


More Info please browser the link: Slick Docs Options

Please remove or comment the below code file path: assets/js/script.js



// 21. 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();
}


Please remove or comment the below code file path: assets/js/script.js


// 22. 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>

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/..

- CSS Minifier

Please minify all JS file path: assets/js/..

- Javascript Minifier

Please go to the image file 'path: assets/images/...' replace the image which one you want following placeholder image size & name

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

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.

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/

Fonts:
Nunito Sans
Raleway

IconFont
Fontawesome
Flaticon