FutureLife

Multi Store Responsive HTML Template


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

 

Introduction

All of the information within the main content area is nested within a div with an id of "wrapper". 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="wrappage ver1 ver2 ...">
	<div id="topbar">
		...
	</div>
	<!-- End top bar -->
	<header id="header" class="...">
		...
	</header>
	<!-- /header -->
	<div class="slidershow-container">
		...
	</div>
	<!-- End Slidershow-Container -->
	<div class="main-content">
		...
	</div>
	<!-- End Main-Content -->
	<footer id="footer" class="...">
		...
	</footer>
	<!-- End footer -->
</div>

 

 

Sidebar

Open a html file with editor, you'll find sidebar in site (*)-sidebar.html:

<div id="secondary" class="sidebar ...">
   <aside class="widget">
         <h3 class="widget-title">...</h3>
         ...
   </aside>
   <aside class="widget">
         <h3 class="widget-title">...</h3>
         ...
   </aside>
   ...
</div>

 

Logo:

Change your logo text and link under sidebar section:

<div class="logo">
    <a href="#" title="Logo">FutureLife ...</a>
</div>

                           

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

  
         .logo img,.nav-logo img {
             -webkit-backface-visibility: hidden;
             backface-visibility: hidden;
             max-width: 100%;
             height: auto;
         }

 

Menu:

Edit menu here:

<!--Menu-->
<header id="header">
   <!-- header  content -->
   ...
   <nav class="mega-menu">
   <ul class="nav navbar-nav">>
          <li class="level1 dropdown">
             <a href="#">...</a>
             <div class="sub-menu dropdown-menu">
          	<div class="top-sub-menu">
          		<div class="item"><div>
          		...
          	<div>
            	<ul class="menu-level-1">
                  <li class="level2">
                  	<a href="#">...</a>
                  	<ul class="menu-level-2">
                  		<li class="level3"><a href="#">...</a></li>
                  		...
                  	</ul>
                  </li>
                  ...
              </ul>
            </div>
          </li>
          ...
       </ul>
    </nav>
</header>

 

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

<li class="level1"><a href="grid.html" title="Table">Table</a></li>

 

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

<li class="level1 dropdown">
	<a href="#" title="Table">Table</a>
	<div class="sub-menu dropdown-menu">
		<ul class="menu-level-1">
			<li class="level2"><a href="#">Clothing</a></li>
			...
		</ul>
	</div>
</li>

Footer

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

<footer id="footer">
	  <div class="container">
		    <div class="footer-top row">
		    	...
		    </div>
		    <div class="footer-bottom row">
		    	...
		    </div>
	  </div>
</footer>

 

 

The search need backend program.

 

Social icons

Find the code:

<div class="footer-bottom">
	<div class="social col-md-6">
		<a href="#"><i class="fa fa-twitter"></i></a>
		<a href="#"><i class="fa fa-skype"></i></a>
		<a href="#"><i class="fa fa-vine"></i></a>
		<a href="#"><i class="fa fa-facebook"></i></a>
	</div>
</div>

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

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

 

Breadscrubmb

Find the code:

<ul class="breadcrumb">
	<li><a href="#"></a>Home</li>
	<li><a href="#" class="active" >Table</a></li>
</ul>

 

Main Home

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

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

 

Header

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

               <header id="header" class="header-v2 ...">
                   ...
               <header>

 

Product

Product structure is displayed Grid.you can modify this structure.

<div class="item-inner">
    <div class="product">
        <span class="sale lable">Sale</span>
        <a class="product-images" href="#" title="">
            <img class="primary_image" src="assets/images/Futurelife-product1.jpg" alt=""/>
            <img class="secondary_image" src="assets/images/Futurelife-product1-hover.jpg" alt=""/>
        </a>
        <p class="product-title">Smart TV Ultra HD 40 inch - 40JU6600</p>
        <p class="description">Lorem Ipsum is...</p>
        <div class="product-price">
            <p class="content-star">
                <i class="fa fa-star active"></i>
                <i class="fa fa-star active"></i>
                <i class="fa fa-star active"></i>
                <i class="fa fa-star active"></i>
                <i class="fa fa-star"></i>
            </p>
            <span class="price">$ 650.99</span>
            <span class="price-old">$ 670.99</span>
        </div>
        <a class="add-to-cart" href="#">Add to Cart</a>
        <div class="action">
            <a href="#" title="Like"><i class="fa fa-heart-o"></i></a>
            <a href="#" title="View"><i class="fa fa-compress"></i></a>
        </div>
        <!-- End Action -->
    </div>
    <!-- End product -->
</div>
<!-- End Item-Product -->

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: contact-us.html. If you want to insert the modules in the template, please make sure the wrap is like:                                            

<body>
	<div id="topbar">
	</div>
	<!-- End top bar -->
	<header id="header">
	</header>
	<!-- End header -->
	<div class="main-content">
		...
	</div>
	<!-- End Main-Content -->
	<footer id="footer">
	</footer>
	<!-- End footer -->
</body>

col-md-12 means width, the template is based on bootstrap 3.x.x. It obeys the bootstrap grid system :
col-md-3 = 1/4 column
col-md-4 = 1/3 column
col-md-6 = 1/2 column
col-md-12 = 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 home-01.html

Heading

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

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="box-timer">
    <div class="timer-view" data-countdown="countdown" data-date="04-1-2016-09-19-41">
    </div>
</div>

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

Css files

There are 8 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.

 

Scss files

You can edit all files  scss file then compile into style.css.

 

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

  1. jquery-1.11.1.min.js  - jQuery -1.11
  2. bootstrap.min.js – main custom javascript
  3. store.js - main custom jQuery
  4. jquery.elevatezoom.js - jquery.elevatezoom
  5. jquery.themepunch.plugins.min.js - revolution slider
  6. jquery.themepunch.revolution.min.js - revolution slider
  7. map.js   - Map custom

 

 

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