Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!
After extract the main zip file, you'll see these folders and files:
We provide 9 HTMLs:
Open a html file with editor, you'll find the code:
<!DOCTYPE html> <html> <head> ... </head> <body class="animsition"> <header class="main-header"> ... </header> ... <section class="green-section" style="padding:50px 0"> ... </section> <footer class="main-footer"> ... </footer> </body> </html>
The header's code looks like this :
<header class="main-header"> <div class="container"> <div class="logo"> <a href="index.html"><img src="assets/img/logo.png" alt="logo"></a> </div> <div class="menu"> <!-- desktop navbar --> <nav class="desktop-nav"> <ul class="first-level"> <li><a href="index.html" class="animsition-link">Home</a></li> <li><a href="about.html" class="animsition-link">about us</a></li> <li><a href="services.html" class="animsition-link">services</a></li> <li><a href="">portfolio</a> <ul class="second-level"> <li><a href="portfolio-1.html" class="animsition-link">portfolio list</a></li> <li><a href="single-project.html" class="animsition-link">single project 1</a></li> <li><a href="single-project-2.html" class="animsition-link">single project 2</a></li> </ul> </li> <li><a href="">blog</a> <ul class="second-level"> <li><a href="blog-1.html" class="animsition-link">posts list</a></li> <li><a href="single-post.html" class="animsition-link">single post</a></li> </ul> </li> <li><a href="contact.html" class="animsition-link">contact us</a></li> </ul> </nav> <!-- mobile navbar --> <nav class="mobile-nav"></nav> <div class="menu-icon"> <div class="line"></div> <div class="line"></div> <div class="line"></div> </div> </div> </div> </header>
To change the logo, you should edit the link in src attribute in img tag.
And for the menu, the links are inside <nav class='desktop-menu'> tag
The footer's code is at the bottom of any HTML file, you can edit its menu &s; its social icons as you like.
<footer class="main-footer"> <div class="container"> <div class="col-md-8 col-sm-12"> <div class="row"> <nav class="footer-nav"> <ul> <li><a href="index.html" class="animsition-link link">Home</a></li> <li><a href="about.html" class="animsition-link link">about us</a></li> <li><a href="services.html" class="animsition-link link">services</a></li> <li><a href="portfolio-1.html" class="animsition-link link">portfolio</a></li> <li><a href="blog-1.html" class="animsition-link link">blog</a></li> <li><a href="contact.html" class="animsition-link link">contact us</a></li> </ul> </nav> </div> </div> <div class="col-md-4 col-sm-12" style="text-align:right"> <div class="row"> <div class="uppercase gray-text"> created by akhouad ©2016. all rights reserved. </div> <ul class="social-icons" style="margin-top:30px;float:right"> <li><a href="#"><i class="icon ion-social-facebook"></i></a></li> <li><a href="#"><i class="icon ion-social-twitter"></i></a></li> <li><a href="#"><i class="icon ion-social-youtube"></i></a></li> <li><a href="#"><i class="icon ion-social-linkedin"></i></a></li> <li><a href="#"><i class="icon ion-social-pinterest"></i></a></li> <li><a href="#"><i class="icon ion-social-instagram"></i></a></li> </ul> </div> </div> </div> </footer>
Each secion has margin top of 150px, if you want to edit this value, you can go to assets/css/style.css and look for section, then you can edit 150px value.
There are three types of sections
to use a stylish blockquote, use this element : <blockquote class="bq">
Akad Template has a special style for links, when you put your mouse on the link, a bottom line appears.
To do so, use this class in "a" tags : <a class="link">

To use this list, use this tag :
<ul class="list-1"> <li>...</li> <li>...</li> <li>...</li> <li>...</li> </ul>

To use this list, use this tag :
<ul class="list-2"> <li>...</li> <li>...</li> <li>...</li> <li>...</li> </ul>

If you want to show tags, use this code
<ul class="tags"> <li>...</li> <li>...</li> <li>...</li> <li>...</li> </ul>

if you want to show social icons, use this code
<ul class="social-icons"> <li>...</li> <li>...</li> <li>...</li> <li>...</li> </ul>
to show like this title
Use this code
<div class="section-title"> <span>why choose us</span> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> </div>
There are two types of buttons in Akad Template, a green one & a white one.
To use the green one, use these two classes btn and green
To use the white one, use these two classes btn and white
If you want to show like these tabs, use this code :
<div class="tab"> <nav> <a href="">Tab_title 1 </a> <a href="">Tab_title 2</a> <div class="bottom-line"></div> </nav> <div class="tab_single shown"> ... </div> <div class="tab_single"> ... </div> </div>Note :
"shown" class is to choose which tab to show first.
Akad Template use 5 CSS files.
Akad Template use 5 CSS files.
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, every file is well documented.
Open the styles folder, you'll find all css files.
This theme imports 7 Javascript files. All located in assets/js folder.