Accesories

HTML Theme Documentation


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 12 HTML:

Introduction

All of the information within the main content area is nested within a div with an id of "wrap". Here is the general structure.
All style.css are put in head tag, put all js files(In addition to jquery.js) before </body>tag.

 

<div class="page-wrapper">
    <!--header-->
    <header class="page-header">
          <!-- header topbar -->
          <div class="topbar">...</div>
          <!-- header content -->
           <div class="header-content">...</div>     
    </header>
  <!--boxed layout-->
  <main class="page-main">
     <!-- slider -->
      <div class="wide_layout relative w_xs_auto">...</div>
      <!-- main content -->
      <section class="main-content">
          <!-- sp-contten -->
           <div class="sp-contten">...</div>
           <!-- bannre-contten -->
          <div class="banner-content">...</div>
          <!—custm-block -->
          <div class="custom-block">...</div>
          <!— block-content -->
         <div class="bock-content ">...</div>
      </section>
  </main>
  <!--footer -->
  <footer class="page-footer footer-luma">...</footer>
</div>

 

 

Sidebar

Open a html file with editor, you'll find the code:

 

 

Logo:

Change your logo text and link under sidebar section:

             <!--Logo-->
             <a class="logo" title="Magento Commerce" href="#">
                 <img  src="images/logo.png" alt="">
             </a>

  
The Image logo size is limited max with 100% in line 3556 file styles.css

  
           .logo{
                  img{
                       max-width: 100%;
                       height:auto;
                   }
             }

 

Menu:

Edit menu here:

<!--Menu-->
<div class="header-content">
    <!-- header nav content -->
    <div id='cssmenu'>
         <ul class="main-nav nav nav-tabs" id="main-menu">
             <li>
                 <a class="active" href="Index_layout_01.html" title="">HOME</a>
                 <ul>
                     <li><a href="#">Home version 1</a></li>
                     <li><a href="#">Home version 2</a></li> 
                 </ul>
             </li>
             <li>...</li>
         </ul>
    </div>
</div>

 

Each <li> tag with class 'cssmenu' is a menu item, you could edit the text and link.

<li><a href="#" title="">SHOP</a></li>

 

If you want to add submenu in Menu item, just insert code in <li>... Shop... </li> like this:

<li><a href="#" title="">SHOP</a>
    <ul>
       <li><a href="Shop_full_width.html">Shop - Full width</a></li>
       <li><a href="Category_grid_left_sidebar.html">Shop - grid-Left sidebar</a></li>
       <li><a href="Category_grid_right_sidebar.html">Shop - grid - Right sidebar</a></li>
       <li><a href="Category_list_left_sidebar.html">Shop - list - Left sidebar</a></li>
       <li><a href="Category_list_right_sidebar.html">Shop - list - Right sidebar</a></li>
       <li><a href="Product_single_post.html">Single product</a></li>
       <li><a href="Shopping_cart.html">Shop Cart</a></li>
       <li><a href="Checkout_page.html">Shop Checkout</a></li>
    </ul>
</li>

 

Footer

Open index.html with editor, footer code is here:

 <footer class="page-footer footer-luma">
         <div class="footer"><!-- footer content -->
                <div class="footer-icon">…</div>
                <div class="footer-bootom">…</div>
               <div class="copyright">…</div>
      </div>
</footer>

 

Footer icon

<!-- Footer-icon -->

<form method="post" class="search-footer cleafix" action="demo_form.asp">              
      <label>
           <p class="left">SIGN UP TO OUR NEWSLETTERS</p>
      </label>
      <div class="col-input">
           <input type="text" name="fname" class="the-sub"  required />
           <button type="submit" class="btn btn-primary">SUBSCRIBE</button>
      </div>
</form>

The search need backend program.

 

Social icons

Find the code:

<div class="col-link">
    <ul>
       <li>
          <div class="link1"><a href="#"><i class="fa fa-facebook"></i></a></div>
       </li>
       <li>
          <div class="link1"><a href="#"><i class="fa fa-twitter"></i></a></div>
       </li>
       <li>
          <div class="link1"><a href="#"><i class="fa fa-google-plus"></i></a></div>
       </li>
       <li>
           <div class="link1"><a href="#"><i class="fa fa-behance"></i></a></div>
       </li>
       <li>
           <div class="link1"><a href="#"><i class="fa fa-pinterest"></i></a></div>
       </li>
     </ul>
</div>

You could edit the icon and link, check the fontawesome and replce the blue tag:

             <i class="fa fa-facebook"></i>

 

Main Content

You should put the main content things to the main-content .

               <section class="main-content">
                   ...
               </section>

 

Header

The header is shown on mobile layout only. You coudl set the logo for mobile layout in this wrap.

               <header class="page-header">
                   ...
               </hearder>

 

Responsive

The theme is default to show the responsive layout when screen width is less 320px. You could remove the class "responsive-ux" in BODY tag to forbid it.

Classic Page

It is a basic layout. You could make the about page, contact page, portfolio/blog list page by the page template, please refer: index_layout_01.html, page-abot-us.html. If you want to insert the modules in the template, please make sure the wrap is like:                                            

 <main class="page-main">
      <!-- slider -->
      <div class="wide_layout relative w_xs_auto">...</div>
      <!-- main content -->
      <section class="main-content">
           <!-- sp-contten -->
           <div class="sp-contten">
                <div class="container">
                     <div class="row">
                        <div class="col-sm-12">
                           ...
                        </div>
                      </div>
                </div>
           </div>

           <!-- bannre-contten -->
           <div class="banner-content">
                <div class="container">
                      <div class="row">
                            <div class="col-xs-12 col-sm-8”>
                                 ...
                            </div>
                       </div>
                 </div>
           </div>
           <!—custm-block -->

           <div class="custom-block">
                <div class="top-custom">
                      <div class="container">
                           <div class="row">
                                <div class="col-sm-6">
                                      ...
                                </div>
                            </div>
                       </div>
                 </div>
            </div>

            <!— block-content -->
            <div class="bock-content ">
                 <div class="bock-content ">
                      <div class="container">
                           <div class="row">
                                <div class="col-md-6 col-lg-6">
                                     ...
                                </div>
                           </div>
                       </div>
                  </div>
             </div>
      </section>
 </main>

 

span12 means width, the template is based on bootstrap 2.3. It obeys the bootstrap grid system :
span3 = 1/4 column
sanp4 = 1/3 column
span6 = 1/2 column
span12 = 1/1 column
(check more)

You could use the fullwidth wrap or Boxed Wrap:

Fullwidth

If you want put the content fill to fullwidth of main-wrap, use the fullwidth as the Index_layout_01.html

Heading

The elements included: H1-H6 font, Capital first letter, Text with icon list and typography with background color

Google map / contact form

Please refer contact_page.html

Google map

Set Google map parameters in file page-about-us.html here:

<script type="text/javascript">
    var map;
    $(document).ready(function(){
      map = new GMaps({
        el: '#map',
        lat: 21.060926,
        lng: 105.773145,
        scrollwheel: false
      });
      map.addMarker({
        lat: 21.060926,
        lng: 105.773145,
        title: 'Lima',
        details: {
          database_id: 42,
          author: 'HPNeo'
        },
        click: function(e){
          if(console.log)
            console.log(e);
          alert('You clicked in this marker');
        },
        mouseover: function(e){
          if(console.log)
            console.log(e);
        }
      });
      map.addMarker({
        lat: -12.042,
        lng: -77.028333,
        title: 'Marker with InfoWindow',
        infoWindow: {
          content: '<p>HTML Content</p>'
        }
      });
    });
</script>

Data-view options are: map, satellite, map_terrain. option value "t" present true and "f" present false

Count down

please refer index_layout_01.html  the woocommerce.js is necessary,

please set the date/time value in the wrap:

<div class="back">
     <div class="data-times" data-countdown="countdown"datadate="06-15-2016-018-20-45"></div>
</div>

The data-dateformat="dHMS" means: displaying day-hour-minutes-seconds, the year/mouth value is: "y" / "o"

Css files

There are 9 main CSS files in this theme.

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.

Open the styles folder, you'll find all css files.

This theme imports 20 Javascript files. All located in the "js" folder.

  1. bootstrap.js – main custom javascript
  2.  application.js - main custom jQuery
  3.  bootstrap-collapse.js - main custom javascript
  4.  bootstrap-tab.js - main custom javascript
  5.  bootstrap-transition.js - main custom javascript
  6.  gmaps.js – Javascript  googlemap
  7.  jquery-1.10.2.js  - jQuery -1.10.2
  8.  jquery-ui.min.js - jquery
  9.  jquery.elevateZoom-3.0.8.min.js - main custom jQuery
  10.  jquery.elevatezoom.js - jquery.elevatezoom
  11.  jquery.themepunch.plugins.min.js - main custom jQuery
  12.  jquery.themepunch.revolution.min.js - main custom jQuery
  13.  owl.carousel.js - owl.carousel slider
  14.  owl.carousel.min.js - owl.carousel slider
  15.  prettify.js - jquery
  16.  script_menu.js – rebonsive menu
  17.  scripts.js  – rebonsive menu
  18.  woocommerce.js – date time jQuery
  19.  wow.js – wow  jQuery
  20.  wow.min.js – wow  jQuery

 

If you have any questions, please do not hesitate to contact us at engotheme@gmail.com. We are happy to help!