Simple, flexible and responsive construction template for your high conversion rate made with Twitter Bootstrap. Highlighted section, forms and more.
Thank you for purchasing yellow hats template. This documentation will help to know more about template and how is structured and how to use the template features.
Yellow Hats is a construction template for construct company built on Bootstrap Framework
, AIDA marketing model
and Principles of Conversion Centered Design
, You can start to use template.html
where all main files are already included and ready to use.
To be able to use HTML template, you must have the following:
HTML/css
- Extra Stylesheets FolderHTML/include
- Required PHP Functions FolderHTML/images
- Images FolderHTML/js
- Javacripts FolderHTML/rs-plugin
- revolution slider FolderHTML/style.css
- Main Stylesheet FileHTML/index.html
- Index File/HomepageFollow the steps below to get started with your Yellow Hats Template:
Package/HTML
Folder to find all the html Templates FilesHTML/assets
- Required all file Folder.HTML/home-1.html
which want to use.HTML/index.html
name file to HTML/index.html
- Index Fileunzip the compressed archive to see the following structure:
yellow hats/ ├── Documentation/ ├── HTML/ ├── assets/ ├── css ├── icons ├── images ├── fonts ├── js ├── less ├── rs-plugin └── php ├── index(intro) ├── home-1.html ├── ... └── cotact-us.html
we use the bootstrap framework as a framework. You can take a look at bootstrap here and see it's feature in action.
And basic layout of the grids look like:
<div class="row"> <div class="col-sm-9"> Level 1: .col-sm-9 <div class="row"> <div class="col-xs-8 col-sm-6"> Level 2: .col-xs-8 .col-sm-6 </div> <div class="col-xs-4 col-sm-6"> Level 2: .col-xs-4 .col-sm-6 </div> </div> </div> </div>
If you find that you need to change structure. Scroll down in your html file and find section that you want to change , all section have predefined html comments like below section example.
<!-- Footer ============================================= --> <footer id="footer1" class="footer-1 text-center bg-dark"> <div class="container"> <div class="row"> <div class="col-md-12"> <!-- Copyrights ============================================= --> <div class="copyright"> <p>copyright © 2015 Yellow Hats.</p> </div> <!-- Footer Widget ============================================= --> <ul class="list-inline social"> <li><a href="#"><i class="fa fa-facebook"></i></a></li> <li><a href="#"><i class="fa fa-twitter"></i></a></li> <li><a href="#"><i class="fa fa-youtube"></i></a></li> <li><a href="#"><i class="fa fa-google-plus"></i></a></li> </ul> </div> </div> </div> </footer><!--Footer end-->
Here's a list of the stylesheet files I'm using with this template, you can find more information opening each file:
File Name | Description |
---|---|
bootstrap.min.css |
This are generic styles, resets & normalization.you can take a look here add see it's feature in action. |
animate.min.css |
This is a bunch of cool, fun, and cross-browser animations for you to use in your projects. you can take a look here add see it's feature in action. |
style.css |
This is the main css file, it contains all the styles of the website. |
custom.css |
To Be Safe, We recommend you writing your rules and style declarations here and just override the previous rules. So in case i make an update you can just replace the stylesheet. |
Here's a list of Less CSS files I'm using with this template, you can find more information opening each file:
File Name | Description |
---|---|
style.less |
This are generic styles and collect all files. |
Base Folder |
This folder contain base less css file and variable file. If you want to change any variable you can go through it. |
Layout Folder |
This folder contain layout less css files like accordion, align, background, list and etc.. |
Module Folder |
This folder contain block and section less css files like action, feature, screenshot, etc... |
State Folder |
This folder contain state cases like on, off button and contains responsive less css file. |
theme folder |
This folder contain color less css file like theme-red.less, theme-yellow.less, theme-purple.less, theme-pink.less, etc... |
The js (scripts) files are loaded in footer. I loaded js Library in the bottom because it will increase the site speed and rendering.
The JS files used in this template are:
File | Description |
---|---|
jquery-2.1.1.min.js |
jQuery is a Javascript library that greatly reduces the amount of code that you must write. |
bootstrap.min.js |
this bring Bootstrap's components to life with over a dozen custom jQuery plugins. Easily include them all, or one by one. |
plugins.js |
this bring all javascript plugins to life which we compresed all plugins to min. |
functions.js |
this to active javascript function and add some coll function to your landing page. |
wow.min.js |
this is a JavaScript plugin that reveals animations when you scroll. Very Animate.css friend,Easily customize animation settings: style, delay, length, offset, iterations... |
jquery.ajaxchimp.js |
AjaxChimp is a jQuery plugin that lets you ajaxify your mailchimp form. |
jquery.counterup.js |
Counter-Up is a lightweight jQuery plugin that counts up to a targeted number when the number becomes visible |
less.min.js |
This is the JavaScript, official, stable version of Less. Getting Started. Options for adding Less CSS to your project. |
owl.carousel.min.js |
jQuery plugin that lets you create beautiful responsive carousel slider. |
html5shiv.js |
This script is the defacto way to enable use of HTML5 sectioning elements in legacy Internet Explorer. |
respond.min.js |
this script is to provide a fast and lightweight (3kb minified / 1kb gzipped) script to enable responsive web designs in browsers that don't support CSS3 Media Queries. |
To work with less css, Just add to head section in your index.html
less library code with main less style file.
<link rel="stylesheet/less" type="text/css" href="assets/less/style.less" /> <script src="assets/js/less.js" type="text/javascript"></script>
You can use loading screen spinners.
Here's a loading screen I'm using with this template, you can select/change what you need and use it:
<div class="preloader"> <div class="spinner"> <div class="bounce1"> </div> <div class="bounce2"> </div> <div class="bounce3"> </div> </div> </div>
To change the font, Check head inindex.html
then in first go to google fonts choose a font and use the generated code and replace with next code.
<!-- Fonts ============================================= --> <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700|Raleway:100,200,300,400,500,600,700,800|Droid+Serif:400,400italic,700,700italic' rel='stylesheet' type='text/css'>
style.css
body { font-family: "Raleway", Arial, sans-serif;/*Change font*/ } h1,h2,h3,h4,h5,h6{ font-family:"Montserrat", Arial, sans-serif;/*Change font*/ }
we uses helper classes to space elements on yellow hats template. Helper classes are used to space elements with margin and padding. This makes it easier to create your own elements in HTML without needing extra CSS to arrange them appropriately.
/* All margin */ .m-0 { margin: 0; } .m-xs { margin:10px; } .m-sm { margin:20px; } .m-md { margin:40px; } .m-lg { margin:80px; } /* top margin */ .mt-0 { margin-top: 0; } .mt-xs { margin-top:10px; } .mt-sm { margin-top:20px; } .mt-md { margin-top:40px; } .mt-lg { margin-top:80px; } .mt-30 { margin-top: 30px !important; } .mt-50 { margin-top: 50px; } .mt-60 { margin-top: 60px; } .mt-150 { margin-top: 150px; } /* bottom margin */ .mb-0 { margin-bottom: 0 !important; } .mb-xs { margin-bottom:10px; } .mb-sm { margin-bottom:20px; } .mb-md { margin-bottom:40px; } .mb-lg { margin-bottom:80px; } .mb-30 { margin-bottom: 30px !important; } .mb-50 { margin-bottom: 50px!important; } .mb-60 { margin-bottom: 60px!important; } .mb-150 { margin-bottom: 150px!important; } /* right margin */ .mr-0 { margin-right: 0; } .mr-xs { margin-right:10px; } .mr-sm { margin-right:20px; } .mr-md { margin-right:40px; } .mr-lg { margin-right:80px; } .mr-30 { margin-right: 30px !important; } .mr-50 { margin-right: 50px; } .mr-60 { margin-right: 60px; } .mr-150 { margin-right: 150px; } /* left margin */ .ml-0 { margin-left: 0; } .ml-xs { margin-left:10px; } .ml-sm { margin-left:20px; } .ml-md { margin-left:40px; } .ml-lg { margin-left:80px; } .ml-30 { margin-left: 30px !important; } .ml-50 { margin-left: 50px; } .ml-60 { margin-left: 60px; } .ml-150 { margin-left: 150px; } /* All padding */ .p-0 { padding: 0; } .p-xs { padding:10px; } .p-sm { padding:20px; } .p-md { padding:40px; } .p-lg { padding:80px; } /* top padding */ .pt-0 { padding-top: 0; } .pt-xs { padding-top:10px; } .pt-sm { padding-top:20px; } .pt-md { padding-top:40px; } .pt-lg { padding-top:80px; } .pt-60 { padding-top: 60px; } /* bottom padding */ .pb-0 { padding-bottom: 0; } .pb-xs { padding-bottom:10px; } .pb-sm { padding-bottom:20px; } .pb-md { padding-bottom:40px; } .pb-lg { padding-bottom:80px; } /* right padding */ .pr-0 { padding-right: 0; } .pr-xs { padding-right:10px; } .pr-sm { padding-right:20px; } .pr-md { padding-right:40px; } .pr-lg { padding-right:80px; } .pr-30 { padding-right: 30px !important; } .pr-50 { padding-right: 50px; } .pr-60 { padding-right: 60px; } .pr-150 { padding-right: 150px; } /* left padding */ .pl-0 { padding-left: 0; } .pl-xs { padding-left:10px; } .pl-sm { padding-left:20px; } .pl-md { padding-left:40px; } .pl-lg { padding-left:80px; }
yellow hats has a number of included colour schemes that you can switch to at any time. To switch colour schemes, simply replace color code in style.css
with what you need.
<!-- COLORS --> Primary Color : #ffc527 Secondary Color : #5a5a5a Body Color : #828282 Heading Color : #2f2f2f
The main favicon is located in assets/images/favicon/favicon.ico
replace with your own.
Rest of favicons for iphone/tablet are located in assets/images/favicon/apple-touch-icon.png
replace with your own favicon.
<link href="assets/images/favicon/favicon.ico" rel="icon"> <link href="assets/images/favicon/apple-touch-icon.png" rel="apple-touch-icon"/>
Just edit the logo-light.png
from the folder assets/images/logo/
or open index.html
and you should see the tag there:
<div class="navbar-header"> <img class="logo center-block" src="assets/images/logo/logo-light.png" alt="logo"> </div>
You can use the backgorund image using the Following code:
<section class="bg-overlay bg-overlay-theme"> <div class="bg-section" > <img src="assets/images/call/2.jpg" alt="Background"/> </div> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-8 col-md-offset-2"> .... </div> <!-- .col-md-8 end --> </div> <!-- .row end --> </div> <!-- .container end --> </section>
We used class to add backgound to feature , call to action section and etc. you can find this backgorunds in images folderassets/images/bg
, and you can Find this background in style.css
.
/*------------------------------------*\ #BACKGROUNDS \*------------------------------------*/ .bg-theme{ background-color:@color-theme} .bg-gray { background-color:@color-gray} .bg-white { background-color:@color-white} /* Background Image */ .bg-section { position: relative; overflow: hidden; z-index: 1; -webkit-background-size: cover; -moz-background-size: cover; -ms-background-size: cover; -o-background-size: cover; background-size: cover; background-attachment: fixed; background-repeat: no-repeat; background-position: center center; width:100%; height:100%; } .....
You can choose between 3 Types of background overlay while creating your section, bg-overlay-light
, bg-overlay-dark
,bg-overlay-theme
.
you can change background opacity from style.css
.bg-overlay-light:before { background-color: rgba(255,255,255, 0.6); } .bg-overlay-dark:before { background-color: rgba(47, 47, 47, 0.95); } .bg-overlay-theme:before { background-color: rgba(255, 197, 39, 0.9); }
we use icon fonts with easy control in color and size so feel free to use more than 600 icon , you can check this icon:
<ul class="list-unstyled checklist"> <li> <i class="fa fa-line-chart pull-left"></i> <h4 class="text-capitalize text-strong">conversion rate improvement</h4> </li> <li> <i class="fa fa-search pull-left"></i> <h4 class="text-capitalize text-strong">crawling search engine speedily</h4> </li> <li> <i class="fa fa-refresh pull-left"></i> <h4 class="text-capitalize text-strong">customize code quickly</h4> </li> </ul>
You can choose between 11 Types of headers while creating your Pages. Simply adding the Header Type CSS class to the Header Element and change the header structure that you need.
<header id="navbar-spy" class="transparent-header"> <nav id="primary-menu" class="navbar navbar-fixed-top style-1"> </nav> </header>
<ul class="nav navbar-nav navbar-left"> </ul>
<li class="has-dropdown"> <a href="#" data-toggle="dropdown" class="dropdown-toggle">about</a> <ul class="dropdown-menu"> <li class="dropdown-submenu"> <a href="#" data-toggle="dropdown" class="dropdown-toggle">about us</a> <ul class="dropdown-menu"> <li><a href="about-1.php">about us 1</a></li> <li><a href="about-2.php">about us 2</a></li> <li><a href="about-me.php">about me</a></li> </ul> </li> <li class="dropdown-submenu"> <a href="#" data-toggle="dropdown" class="dropdown-toggle">our team</a> <ul class="dropdown-menu"> <li><a href="team-1.php">team 1</a></li> <li><a href="team-2.php">team 2</a></li> </ul> </li> <li><a href="testimonials.php">testimonials</a></li> <li><a href="faq.php">FAQS</a></li> </ul> </li> <!-- li end -->
<li class="has-dropdown active"> <a href="#" data-toggle="dropdown" class="dropdown-toggle">Home</a> <ul class="mega-menu"> <li> <ul> <li><a href="home-1.php">home page 1</a></li> <li><a href="home-2.php">home page 2</a></li> <li><a href="home-3.php">home page 3</a></li> <li><a href="home-4.php">home page 4</a></li> <li><a href="home-5.php">home page 5</a></li> <li><a href="home-6.php">home page 6</a></li> </ul> </li> <li> <ul> <li><a href="home-7.php">home page 7</a></li> <li><a href="home-8.php">home page 8</a></li> <li><a href="home-9.php">home one page</a></li> <li><a href="home-10.php">home shop page</a></li> <li><a href="home-11.php">home architect</a></li> </ul> </li> </ul> </li> <!-- li end -->
You can choose between 6 Types of page title while creating your Pages. Simply adding the page title section to your page and change the page title content with that you need, you can find all page title sections in elements-page-title.html
.
<!-- Page Title #1 ============================================= --> <section class="bg-overlay bg-overlay-gradient pb-0"> <div class="bg-section" > <img src="assets/images/page-title/2.jpg" alt="Background"/> </div> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12"> <div class="page-title title-1 text-center"> <div class="title-bg"> <h2>page titles</h2> </div> <ol class="breadcrumb"> <li><a href="#">Home</a></li> <li class="active">page title</li> </ol> </div><!-- .page-title end --> </div><!-- .col-md-12 end --> </div><!-- .row end --> </div><!-- .container end --> </section>
You can choose between 8 Types of heading section while creating your Pages. Simply adding the heading section to your section and change heading content with that you need, you can find all heading section in elements-heading.html
.
<!-- Heading #1 ============================================= --> <section class="bg-gray"> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-8"> <div class="heading heading-1"> <p>all about us</p> <h2>our stroy</h2> <p class="mb-0">Yellow Hats is a leading developer of A-grade commercial, industrial and residential projects in USA. Since its foundation the company has doubled its turnover year on year, with its staff numbers swelling accordingly.</p> </div><!-- .heading end --> </div><!-- .col-md-8 end --> </div><!-- .row end --> </div><!-- .container end --> </section>
You can choose between 7 widgets while creating your sidebar. Simply adding widget to your sidebar. you can find all widgets in elements-widget.html
.
The newsletter is actually an integration of MailChimp or campaignmonitor. You can easily set-up a free account at mailchimp OR campaign monitor
1.find mailchimp url
Go to your mailchimp account. Then go to your existing list. Then Signup forms. Select Embedded forms. You will find form action URL in this page.
2.connect mail chimp
Open functions.js
and find following script. Just replace that mailchimp form action url with your mailchimp list url.
1.find campaign monitor url
Paste your existing subscribe form in the area designated just after and Take your Campaign Monitor subscribe form... in the code. If you don't yet have a subscription form
more about AJAX Subscription Form and steps here.
2.replace mailchimp code form with campaign monitor code form
replace:
with:
<!-- Campaignmonitor Form Subscription ============================================= --> <form class="form-inline" action="Your Form Action URL" method="post" id="campaignmonitor"> <p> <input id="fieldEmail" class="form-control input-box" name="cm-jidjdl-jidjdl" type="email" required /> </p> <p> <button type="submit" class="btn button-primary text-capitalize">signup me now</button> </p> </form>
Just put your email address in file send.php
at the folder assets/php/
and you should see the code there:
$to_Email = "[email protected]"; //Replace with recipient email address
we sepatate sending data to multi file to cn use multi form in the same files you can find forms in assets/php/
Just put your email address in file that you need to active and you should see the code there in all files:
$to_Email = "[email protected]"; //Replace with recipient email address
You can choose between 8 call to action section while creating your Pages. Simply adding the CTA section to your pages and change section content with that you need, you can find all CTA section in elements-cta.html
.
<!-- Call To Action #1 ============================================= --> <section id="cta-1" class="cta pb-0"> <div class="container"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12"> <div class="cta-1 bg-theme"> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-1 hidden-xs"> <div class="cta-img"> <img src="assets/images/call/cta-1.png"> </div> </div> <!-- .col-md-2 end --> <div class="col-xs-12 col-sm-12 col-md-7 cta-devider text-center-xs"> <div class="cta-desc"> <p>Have Any Questions !</p> <h5>Don’t Hesitate To Contact Us ANy Time.</h5> </div> </div> <!-- .col-md-7 end --> <div class="col-xs-12 col-sm-12 col-md-2 pull-right pull-none-xs"> <div class="cta-action"> <a class="btn btn-secondary" href="#">contact us</a> </div> </div> <!-- .col-md-2 end --> </div> </div> <!-- .cta-1 end --> </div> <!-- .col-md-12 end --> </div> <!-- .row end --> </div> <!-- .container end --> </section> <!-- #cta-1 end -->
Yellow Hats includes 2 Unique Sliders & 13+ Pre-Built Slider Templates for you to be used on any Page with alot of Options. The List of all the Sliders included are mentioned as follows:
You can find the Revolution Slider related Documentation here.
You can find the Owl Slider related Documentationhere.
You can choose between projects grid options while creating your Pages. Simply select what you need form projects pages and work with it. Also we use isotrope to filter projects.
<!-- Project Item #7 --> <div class="col-xs-12 col-sm-6 col-md-4 project-item interior"> <div class="project-img"> <img class="" src="assets/images/projects/grid/6.jpg" alt="interior"/> <div class="project-hover"> <div class="project-meta"> <h6>Interior</h6> <h4><a href="#">New Office Room</a></h4> </div> <div class="project-zoom"> <a class="img-popup" href="assets/images/projects/full/6.jpg" title="New Office Room"><i class="fa fa-plus"></i></a> </div> </div> <!-- .project-hover end --> </div> <!-- .project-img end --> </div> <!-- .project-item end -->
You can choose between 4 testimonial section while you creating your pages. Simply adding section to your page. you can find all widgets in elements-testimonials.html
.
You can choose between blog grid pages while you creating your pages.
Yellow Hats includes +16 unique shortcode. The List of all the shrotcode included are mentioned as follows:
I've used the following images, icons or other files as listed.
Released on 21th of mars 2016.