Techex - Information & Technology HTML Template

Created: 20 Septembar, 2021

Update: 30 october, 2024

24/7 Support: Send us a message

Thank you for purchasing our template. If you have any questions that are beyond the scope of this help file, please feel free to Support

  1. FTP Upload:
    • Open up your FTP manager and connect to your hosting
    • Browse to required directory (Normally public_html)
    • Upload the files inside techex-html folder.
    <!-- Google Fonts
    ============================================ -->
    circular std - <link href='https://fontspace.io/circular-std-font-download/' rel='stylesheet' type='text/css'>

		
	
    <!-- ===========  All Stylesheet  ================= -->

    <!-- fontawesome css plugins 
    ============================================ -->
    <link rel="stylesheet" href="assets/css/font-awesome.min.css">

    <!-- metismenu CSS
    ============================================ -->
    <link rel="stylesheet" href="assets/css/metismenu.css">
    <
    !-- animate CSS
    ============================================ -->
    <link rel="stylesheet" href="assets/css/animate.css">

    <!-- magnific-popup CSS
    ============================================ -->
    <link rel="stylesheet" href="assets/css/magnific-popup.css">

    <!-- Owl Carousel CSS
    ============================================ -->
    <link rel="stylesheet" href="assets/css/owl.carousel.min.css">

    <!--  Swiper CSS
    <link rel="stylesheet" href="assets/css/odometer-theme-default.css">

    <!-- Owl Carousel CSS
    ============================================ -->
    <link rel="stylesheet" href="assets/css/owl.theme.css">

    <!-- helper CSS
    ============================================ -->
    <link href="assets/css/helper.css" rel="stylesheet">

    <!-- Bootstrap CSS
    ============================================ -->
    <link href="assets/css/bootstrap.min.css" rel="stylesheet">

    <!-- ASO CSS
    ============================================ -->
    <link href="assets/css/aos.min.css" rel="stylesheet">

    <!-- Template Style CSS
    ============================================ -->
    <link rel="stylesheet" href="assets/css/style.css">

    <!-- Style CSS
    ============================================ -->
    <link rel="stylesheet" href="style.css">

    <!-- All JS Plugins -->

    <!-- jQuery
    ============================================ -->
    <script src="assets/js/jquery-1.12.4.min.js"></script>

    <!-- Bootstrap
    ============================================ -->
    <script src="assets/js/bootstrap.min.js"></script>

    <!-- Others jQuery Plugins
    ============================================ -->
    <script src="assets/js/jquery.easing.1.3.js"></script>
    <script src="assets/js/popper.min.js"></script>
    <script src="assets/js/scrollUp.min.js"></script>
    <script src="assets/js/owl.carousel.min.js"></script>
    <script src="assets/js/magnific-popup.min.js"></script>
    <script src="assets/js/wow.min.js"></script>
    <script src="assets/js/metismenu.js"></script>
    <script src="assets/js/progresscircle.js"></script>
    <script src="assets/js/waypoints.min.js"></script>
    <script src="assets/js/modernizr.min.js"></script>
    <script src="assets/js/isotope.pkgd.min.js"></script>
    <script src="assets/js/imageload.min.js"></script>
    <script src="assets/js/swiper-bundle.min.js"></script>
    <script src="assets/js/counterup.min.js"></script>
    <script src="assets/js/odometer.js"></script>
    <script src="assets/js/nice-select.min.js"></script>
    <script src="assets/js/ajax-mail.js"></script>
    <script src="assets/js/aos.min.js"></script>
    <!-- Main JS
    ============================================ -->
    <script src="assets/js/active.js"></script>
	

How to Change Logo

How to Change Title

How to Change Favicon

How to Change Hero Sliders Section Homepage

How to Change Section Titile

How to Change Page Banner

How to Change Serivce

How to Change Single-skill Item

How to Change Single Pricing Plane Item

How to Change Blog Section Item

How to Change Mail Address with Your's - Open mail.php file and edit.

How to Change Social Links

How to Change Copyright

SCSS Structure

CSS Structure

I'm using One SCSS files in this template. You change the SCSS Code of style.scss file

=================================
|***    Table of contents:   ***|
=================================
1. General styles
2. Typography
3. Helpers
4. Preloader
5. Go up button
6. Header and navigation
7. Hero Section
8. About us
9. Causes
10. Fun facts
11. Events
12. Blog

*Note: Responsive css in style.css file bottom.

	

If you would like to edit a specific section of the site, simply find the appropriate label in the CSS file, and then scroll down until you find the appropriate style that needs to be edited.

Home Page Hero Sliders section CSS - find and change it on _hero.scss from "assets/scss" folder

	
  /* ----------------------------------
  Hero Section - Styles
------------------------------------ */

 .hero-1 {
    .single-slide {
        padding: 330px 0px 225px;
        z-index: 1;
        position: relative;
        overflow: hidden;

        @media (max-width: 1199px) {
            padding: 230px 0px 175px;
        }

        @media (max-width: 991px) {
            padding: 180px 0px 120px;
        }

        @media (max-width: 767px) {
            padding: 150px 0px 100px;
        }

        &::before {
            position: absolute;
            left: 0;
            top: 0;
            background-image: url('./assets/img/slide_bg_circle.png');
            width: 60%;
            height: 100%;
            content: "";
            z-index: -1;
            opacity: .5;
            background-repeat: no-repeat;

            @media (max-width: 1600px) {
                width: 100%;
            }
        }

        .hero-contents {
            position: relative;
            z-index: 2;

            h1 {
                font-weight: 900;

                @media (max-width: 1199px) {
                    font-size: 100px;
                }

                @media (max-width: 991px) {
                    font-size: 80px;
                }

                @media (max-width: 767px) {
                    font-size: 60px;
                }
            }

            h2 {
                font-size: 100px;
                line-height: 1;
                font-weight: 900;
                margin-bottom: 20px;

                @media (max-width: 1199px) {
                    font-size: 80px;
                }

                @media (max-width: 991px) {
                    font-size: 70px;
                }

                @media (max-width: 767px) {
                    font-size: 50px;
                }
            }

            p {
                color: #211e3b;
                font-weight: 500;
                font-size: 24px;
                margin-top: 20px;

                @media (max-width: 767px) {
                    font-size: 20px;
                }
            }

            a {
                margin-top: 35px;
                margin-right: 20px;
                
                @media (max-width: 767px) {
                    margin-top: 20px;
                }
            }
        }

        .slide-top-img {
            width: 771px;
            height: 788px;
            position: absolute;
            z-index: -1;
            background-color: #eee;
            right: 0;
            top: 0;
            content: "";
            // clip-path: polygon(26% 0, 100% 0%, 100% 75%, 78% 81%, 11% 14%);
            clip-path: polygon(25% 0, 100% 0%, 101% 70%, 66% 80%, 0% 17%);
            background-position: -125px;

            @media (max-width: 1400px) {
                width: 634px;
                height: 652px;
                right: -83px;
                background-position: -90px;
            }
        }

        .slide-bottom-img {
            width: 972px;
            height: 486px;
            position: absolute;
            z-index: -1;
            background-color: #eee;
            right: 30px;
            bottom: 0;
            content: "";
            clip-path: polygon(50% 0%, 100% 100%, 0% 100%);

            @media (max-width: 1400px) {
                width: 672px;
                height: 386px;
                right: 0;
            }
        }

        .bg-overlay {
            &::before {
                background: $second-color;
                opacity: .1;
            }
        }
    }
 }



Change section padding CSS - find and change it on style.css or _section.scss file from scss folder

.section-padding {
    padding: 130px 0px;
}

JavaScript Customization



Change The Carosuels & Others with your's choice

	
 
  $(window).on('load', function() {
            // Animate loader off screen
            $(".preloader").delay(500).fadeOut();                        
        });
        
        $(".hero-slider-active").owlCarousel({        
            items: 1,     
            dots: false,
            loop: true,
            autoplayTimeout: 8000,
            autoplay:true,
            nav: true,          
            navText: ['', ''],
        });

		

Credits And Sources

Once again thank you for purchasing one of our Templates

Best Regards

RRDevs