The template folder Evator 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/php — folder with PHP files.
  6. 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/fontawesome-5.14.0.min.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="assets/css/bootstrap.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/aos.css">
<!-- Swiper -->
<link rel="stylesheet" href="assets/css/swiper.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>
<!-- Magnific Popup -->
<script src="assets/js/jquery.magnific-popup.min.js"></script>
<!-- Nice Select -->
<script src="assets/js/jquery.nice-select.min.js"></script>
<!-- Image Loader -->
<script src="assets/js/imagesloaded.pkgd.min.js"></script>
<!-- Isotope -->
<script src="assets/js/isotope.pkgd.min.js"></script>
<!-- Swiper -->
<script src="assets/js/swiper.min.js"></script>
<!-- TweenLite -->
<script src="assets/js/TweenLite.min.js"></script>
<!--  AOS Animation -->
<script src="assets/js/aos.js"></script>
<!-- Custom script -->
<script src="assets/js/script.js"></script>
    

The Evator 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:



<!-- Video Area start -->
<div class="video-area">
    <div class="container-fluid">
        <div class="video-wrap text-center rel" data-aos="zoom-in" data-aos-duration="1500" data-aos-offset="50">
            <img src="assets/images/video/video-bg.jpg" alt="Video">
            <a href="https://www.youtube.com/watch?v=TfU0qjuZkJ4" class="mfp-iframe video-play">Play</a>
        </div>
    </div>
</div>
<!-- Video Area end -->


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


// Fonts
$fonts: (base-font: '"Open Sans", sans-serif', heading-font: '"Montserrat", sans-serif')

File path: assets/sass/_variables.sass


// Colors
$colors: (primary-color: #2A07F9, secondary-color: #FF2883, heading-color: #01030B, base-color: #0F0E0E, lighter-color: #F9F9F9, border-color: #EDEDED,  primary-rgb: '42, 7, 249',  secondary-rgb: '255, 40, 131')

Contact Email and Subject code can be found in the "form-process.php" file path: assets/php/form-process.php



$EmailTo = "yourname@domain.com";

$bodySubject = "New Message Received";


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



// ## Testimonials Carousel
if ($('.testimonials-active').length) {
    $('.testimonials-active').slick({
        infinite: true,
        speed: 400,
        arrows: false,
        dots: true,
        focusOnSelect: true,
        autoplay: true,
        autoplaySpeed: 5000,
        slidesToShow: 2,
        slidesToScroll: 1,
        responsive: [
            {
                breakpoint: 991,
                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



// ## AOS Animation
AOS.init();


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



// ## Preloader
function preloader() {
    const preloader = $('#preloader');
    preloader.find('.animation-preloader').fadeOut('slow');

    if (preloader.length > 0) {
        $('.preloader-layer .overly').animate({
            'left': '100%'
        }, {
            step: function (now, fx) {
                $(this).css({"transform": "translate3d(0px, 0px, 0px)"});
            },
            duration: 650,
            easing: 'linear',
            queue: false,
            complete: function () {
                preloader.fadeOut('slow');
            }
        }, 'linear');
    }
}
preloader();


Also, please remove or comment the above code all HTML files



<!-- Preloader -->
<div class="site-preloader" id="preloader">
    <div class="animation-preloader">
        <div class="spinner"></div>
        <div class="text-loading">
            <span data-text-preloader="E" class="letters-loading">E</span>
            <span data-text-preloader="V" class="letters-loading">V</span>
            <span data-text-preloader="A" class="letters-loading">A</span>
            <span data-text-preloader="T" class="letters-loading">T</span>
            <span data-text-preloader="O" class="letters-loading">O</span>
            <span data-text-preloader="r" class="letters-loading">r</span>
        </div>
        <p class="loading-text">Loading</p>
    </div>
    <div class="preloader-layer layer-one">
        <div class="overly"></div>
    </div>
    <div class="preloader-layer layer-two">
        <div class="overly"></div>
    </div>
    <div class="preloader-layer layer-three">
        <div class="overly"></div>
    </div>
</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:
Open Sans
Montserrat

IconFont
Fontawesome
Flaticon