Overview
Dear customers, first of all we would like to thank you for choosing Unify Template! We truly hope that Unify will serve you well, and that it will live up to your expectations.
We hope you will enjoy using Unify template's easy to navigate and user-friendly layout as well as developer-friendly code. Furthermore, a lot of resources have been employed and many options have been added just to make sure that our valued customers will be satisfied with their purchase.
Updates
In order to keep up with the fast paced evolution of web design trends, we always try to release new updates on continuous basis. Our goal with each update is to impress our customers and to put huge smiles on their faces.
We would like to bring to your attention that once you purchase Unify, you become eligible for a lifetime entitlement to download updates for FREE!
On the other hand however, we regret to inform you that license upgrade is not available. If you wish to upgrade your license, a new purchase must be made.
Current updated release is v1.9+, which offers several improvements including fixed bugs, a variety of new thematic demos and plenty of new designs. Unify does not stop there as many more new amazing features are surely coming soon in the next updates. Thank you always for using Unify Template and for being a vital part of its success.
Support
We believe in Unify that support is a crucial aspect of any successful product. Therefore, we try our very best to offer the most excellent support, and we always try anything within our power to assist our valued customers. It is worth noting that our support mainly covers any design issues that one might encounter, in addition to frontend-related issues, as long as it is not complete customized work.
If you have any questions, please feel free to contact us at support@htmlstream.com and we will do our best to get back to you within 24 hours. It might take a bit longer, but we try hard not to keep you waiting longer than 48 hours.
You may also leave us a message through our social pages: Facebook and Twitter
- Author: Htmlstream
- Contact: support@htmlstream.com | Twitter | Facebook
- Created on: 24/04/2013
- Latest Update on: 01/04/2016
Main Structure top
Files Structure Updated v1.9.2
Unify comes with 6 complete independent packages. In your download package, inside the HTML fodler you will find main Unify Main (Default)
template and assets files, E-commerce (Shop UI)
, Blog & Template
, One Pages
, Landing Pages
, and Email Templates
packages. It also includes with PSD files. Please check README.txt file in the PSD folder to download the full version of available PSD files. The README.txt file includes the download link and password.
DOWNLOAD PACKAGE
- ---- Documentation
- ---- PSD
- ---- HTML
- ---- assets
- ---- E-Commerce
- ---- Blog-Magazine
- ----
One-Pages
- ---- assets
- ---- Classic
- ---- Agency
- ---- App
- ---- Architecture
- ---- Business
- ---- Lawyer
- ---- Shipping
- ---- Spa
- ---- Travel
- ---- Wedding
- ---- Courses
- ----
..
- ----
..
- ---- Landing-Pages
- ---- Email-Templates
- ----
index.html
- ----
..
- ----
..
Home pages in Unify Template consist of header
, slider
, content part
, footer
and copyright
parts. However, inner pages include breadcrumbs
instead of slider
.
Beginning of the Page
In order to detect Internet Explorer browser version 9, a specific class is implemented at the beginning of all HTML pages, as shown in the code below.
<!DOCTYPE html>
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
Page Head Updated v1.7
Page head contains Metadata, Favicon, Title, Web Fonts and CSS links.
<head>
<title>Unify - Responsive Website Template</title>
<!-- Meta -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="description">
<meta content="" name="author">
<!-- Favicon -->
<link rel="shortcut icon" href="favicon.ico">
<!-- Web Fonts -->
<link rel="shortcut" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=cyrillic,latin">
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- CSS Header and Footer -->
<link rel="stylesheet" href="assets/css/headers/header-default.css">
<link rel="stylesheet" href="assets/css/footers/footer-v1.css">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="assets/plugins/animate.css">
<link rel="stylesheet" href="assets/plugins/line-icons/line-icons.css">
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.css">
<!-- CSS Theme -->
<link rel="stylesheet" href="assets/css/theme-colors/default.css">
<!-- CSS Customization -->
<link rel="stylesheet" href="assets/css/custom.css">
</head>
Wrapper Added v1.4
.wrapper
class is added on v1.4 to wrap ALL body contents. It mainly consists of header, slider, breadcrumbs, content parts etc.
<div class="wrapper">
...
...
</div>
Note Below codes are nested within the wrapper content. It starts from header
and ends after the copyright
part.
Header Updated v1.6
<!--=== Header ===-->
<div class="header">
<!-- Topbar -->
<div class="topbar">
...
...
</div>
<!-- End Topbar -->
<!-- Navbar -->
<div class="navbar navbar-default mega-menu" role="navigation">
...
...
</div>
<!-- End Navbar -->
</div>
<!--=== End Header ===-->
Content Updated v1.6
Container block includes all the content of the page. Moreover, the .content
class was added in v1.4 to the main wrap container to give space (padding) for the content.
<!--=== Content Part ===-->
<div class="container content">
...
...
</div><!--/container-->
<!--=== End Content Part ===-->
Footer
<!--=== Footer Version 1 ===-->
<div class="footer-v1">
<div class="footer">
<div class="container">
...
...
</div>
</div><!--/footer-->
<div class="copyright">
<div class="container">
...
...
</div>
</div><!--/copyright-->
</div><!--/footer-v1-->
<!--=== End Footer Version 1 ===-->
Javascript and jQuery
Javascript files are called at the bottom of the page, this practice effectively reduces load time.
<!-- JS Global Compulsory -->
<script src="assets/plugins/jquery/jquery.min.js"></script>
<script src="assets/plugins/jquery/jquery-migrate.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- JS Implementing Plugins -->
<script src="assets/plugins/back-to-top.js"></script>
<script src="assets/plugins/smoothScroll.js"></script>
<!-- JS Customization -->
<script type="text/javascript" src="assets/js/custom.js"></script>
<!-- JS Page Level -->
<script src="assets/js/app.js"></script>
<script>
jQuery(document).ready(function() {
App.init();
});
</script>
<!--[if lt IE 9]>
<script src="assets/plugins/respond.js"></script>
<script src="assets/plugins/html5shiv.js"></script>
<script src="assets/plugins/placeholder-IE-fixes.js"></script>
<![endif]-->
Misc Pages Updated v1.9.1
Misc pages were purposely created with merely the main parts of the page, which makes it easier for developers to add their content directly. Simply use any following page to start your new project:
page_misc_blank.html
Empty blank page with all main components connected alreadypage_misc_boxed.html
Boxed layout of Unify Templatepage_misc_boxed_img.html
Boxed layout of Unify Templatepage_misc_boxed_fixed_header.html
Fixed header in boxed layout of Unify Templatepage_misc_dark.html
Dark version of Unify Templatepage_misc_dark_boxed.html
Dark version in boxed layout of Unify Templatepage_misc_dark_other_color.html
Dark version with other theme color of Unify Templatepage_misc_sticky_footer.html.html
Sticky Footer with Copyright Section
CSS (Cascading Style Sheets) top
CSS Files Structure
Unify Template uses a number of CSS files in order to keep the template organized and easy to use for further development, from small projects to massive corporate projects. All CSS
files are logically organized. Knowing CSS
files makes customization process a lot easier and far more flexible. In addition app.css
and blocks.css
CSS files are used globally in all packages, It helps to use all Unify default elements, blocks etc. in any packages.
All CSS files located in assets/css
CSS
- ---- pages: From here you may control all of the independent CSS pages.
- ---- headers: From here you may control all of the 8 Headers. They are in a separate folder because usually one header is used per project.
- ---- footers: From here you may control all of the 8 Footers. They are in a separate folder because usually one footer is used per project.
- ---- theme-skins From here you may control the theme skins. At the moment Unify has only one theme skin which is dark version of Unify Template.
- ---- theme-colors: From here you may control all 12 theme colors. For color codes please refer to "Theme Configuration" section.
- ----
app.css
- ----
style.css
- ----
blocks.css
CSS Classes Updated v1.9
For more detailed information click any link below
General classes for spaces
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | content |
Applies40px padding from top and bottom.Designed to be used in big blocks |
padding-top: 40px;padding-bottom: 40px; |
2 | content-sm |
Applies60px padding from top and bottom.Designed to be used in big blocks |
padding-top: 60px;padding-bottom: 60px; |
3 | content-md |
Applies80px padding from top and bottom |
padding-top: 80px;padding-bottom: 80px; |
4 | content-lg |
Applies100px padding from top and bottom.Designed to be used in big blocks |
padding-top: 100px;padding-bottom: 100px; |
5 | space-lg-hor |
Applies60px padding from left and right side |
padding-left: 60pxpadding-right: 60px; |
6 | space-xlg-hor |
Applies100px padding from left and right side |
padding-left: 100px;padding-right: 100px; |
7 | margin-left-5 |
Applies5px margin to the left |
margin-left: 5px |
8 | margin-right-5 |
Applies5px margin to the right |
margin-right: 5px |
9 | no-top-space |
Removes padding-top and margin-top | margin-top: 0; padding-top: 0; |
10 | no-bottom-space |
Removes padding-bottom and margin-bottom | margin-bottom: 0; padding-bottom: 0; |
11 | margin-bottom-5 |
Applies5px margin to the bottom |
margin-bottom: 5px |
12 | margin-bottom-10 |
Applies10px margin to the bottom |
margin-bottom: 10px |
13 | margin-bottom-15 |
Applies15px margin to the bottom |
margin-bottom: 15px |
14 | margin-bottom-20 |
Applies20px margin to the bottom |
margin-bottom: 20px |
15 | margin-bottom-25 |
Applies25px margin to the bottom |
margin-bottom: 25px |
16 | margin-bottom-30 |
Applies30px margin to the bottom |
margin-bottom: 30px |
17 | margin-bottom-35 |
Applies35px margin to the bottom |
margin-bottom: 35px |
18 | margin-bottom-40 |
Applies40px margin to the bottom |
margin-bottom: 40px |
19 | margin-bottom-45 |
Applies45px margin to the bottom |
margin-bottom: 45px |
20 | margin-bottom-50 |
Applies50px margin to the bottom |
margin-bottom: 50px |
21 | margin-bottom-55 |
Applies55px margin to the bottom |
margin-bottom: 55px |
22 | margin-bottom-60 |
Applies60px margin to the bottom |
margin-bottom: 60px |
Example:
<ul class="margin-bottom-40">
<li>Donec posuere</li>
<li>Donec posuere</li>
<li>Donec posuere</li>
</ul>
For medium device modern @media (max-width: 992px)
Those classes are effective when the screen size is less than 992px in width. For example when elements are placed horizontally on bigger devices and vertically on smaller devices they will get stuck to each other because there is not enough spacing between elements. Which is why the following classes will be very useful.
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | md-margin-bottom-10 |
Applies10px margin bottom for widths less than992px only |
margin-bottom: 10px |
2 | md-margin-bottom-20 |
Applies20px margin bottom for widths less than992px only |
margin-bottom: 20px |
3 | md-margin-bottom-30 |
Applies30px margin bottom for widths less than992px only |
margin-bottom: 30px |
4 | md-margin-bottom-40 |
Applies40px margin bottom for widths less than992px only |
margin-bottom: 40px |
5 | md-margin-bottom-50 |
Applies50px margin bottom for widths less than992px only |
margin-bottom: 50px |
6 | md-margin-bottom-60 |
Applies60px margin bottom for widths less than992px only |
margin-bottom: 60px |
For small device mode @media (max-width: 768px)
Those classes are effective when the screen size is less than 768px in width. For example when elements are placed horizontally on bigger devices and vertically on smaller devices they will get stuck to each other because there is not enough spacing between elements. Which is why the following classes will be very useful.
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | sm-margin-bottom-10 |
Applies10px margin bottom for widths less than768px only |
margin-bottom: 10px |
2 | sm-margin-bottom-20 |
Applies20px margin bottom for widths less than768px only |
margin-bottom: 20px |
3 | sm-margin-bottom-30 |
Applies30px margin bottom for widths less than768px only |
margin-bottom: 30px |
4 | sm-margin-bottom-40 |
Applies40px margin bottom for widths less than768px only |
margin-bottom: 40px |
5 | sm-margin-bottom-50 |
Applies50px margin bottom for widths less than768px only |
margin-bottom: 50px |
6 | sm-margin-bottom-60 |
Applies60px margin bottom for widths less than768px only |
margin-bottom: 60px |
Classes for text colors
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | color-sea |
Changes a text color to sea | color: #1abc9c; |
2 | color-green |
Changes a text color to green | color: #72c02c |
3 | color-redgreen1 |
Changes a text color to redgreen1 | color: #2ecc71 |
4 | color-light-green |
Changes a text color to light-green | color: #1abc9c |
5 | color-purple |
Changes a text color to purple | color: #9b6bcc |
6 | color-dark-blue |
Changes a text color to dark-blue | color: #4765a0 |
7 | color-blue |
Changes a text color to blue | color: #3498db |
8 | color-aqua |
Changes a text color to aqua | color: #27d7e7 |
9 | color-red |
Changes a text color to red | color: #e74c3c; |
10 | color-orange |
Changes a text color to orange | color: #e67e22 |
11 | color-yellow |
Changes a text color to yellow | color: #f1c40f |
12 | color-brown |
Changes a text color to brown | color: #9c8061 |
13 | color-dark |
Changes a text color to dark | color: #555555 |
14 | color-light-grey |
Changes a text color to light-grey | color: #585f69 |
15 | color-grey |
Changes a text color to grey | color: #95a5a6 |
16 | color-light |
Changes a text color to light | color: #ffffff |
classes for Background colors
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | bg-color-dark |
Changes a Background color to dark | background-color: #555; |
1 | bg-color-red |
Changes a Background color to red | background-color: #e74c3c; |
1 | bg-color-sea |
Changes a Background color to sea | background-color: #1abc9c; |
1 | bg-color-blue |
Changes a Background color to blue | background-color: #3498db; |
1 | bg-color-grey |
Changes a Background color to grey | background-color: #95a5a6; |
1 | bg-color-green |
Changes a Background color to green | background-color: #72c02c; |
1 | bg-color-brown |
Changes a Background color to brown | background-color: #9c8061; |
1 | bg-color-orange |
Changes a Background color to orange | background-color: #e67e22; |
1 | bg-color-green1 |
Changes a Background color to green1 | background-color: #2ecc71; |
1 | bg-color-purple |
Changes a Background color to purple | background-color: #9b6bcc; |
1 | bg-color-dark-blue |
Changes a Background color to dark-blue | background-color: #4765a0; |
1 | bg-color-light-grey |
Changes a Background color to light-grey | background-color: #585f69; |
1 | bg-color-light-green |
Changes a Background color to light-green | background-color: #79d5b3; |
Example:
<div class="bg-color-dark">Demo Information<div>
Classes for rounded corners
round
classes can be applied to images, blocks, buttons...
rounded-top
rounded-left
rounded-right
rounded-bottom
rounded
rounded-x
rounded-2x
rounded-3x
rounded-4x
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | rounded-top |
Applies 4px border-radius to top corners |
border-radius: 4px 4px 0 0 !important; |
2 | rounded-left |
Applies 4px border-radius to left corners |
border-radius: 4px 0 0 4px !important; |
3 | rounded-right |
Applies 4px border-radius to right corners |
border-radius: 0 4px 4px 0 !important; |
4 | rounded-bottom |
Applies 4px border-radius to bottom corners |
border-radius: 0 0 4px 4px !important; |
5 | rounded |
Applies 4px border-radius to all corners |
border-radius: 4px; |
6 | rounded-x |
Makes the item round (full circle) | border-radius: 50% !important; |
7 | rounded-2 |
Applies 10px border-radius to all corners |
border-radius: 10px !important;; |
8 | rounded-3 |
Applies 15px border-radius to all corners |
border-radius: 15px !important; |
9 | rounded-4 |
Applies 20px border-radius to all corners |
border-radius: 20px !important; |
Classes for height
# | Class Name (Selector) | Description | Declaration |
---|---|---|---|
1 | height-100 |
Applies minimum 100px of height to an element | min-height: 100px; |
2 | height-200 |
Applies minimum 200px of height to an element | min-height: 200px; |
3 | height-300 |
Applies minimum 300px of height to an element | min-height: 300px; |
4 | height-400 |
Applies minimum 400px of height to an element | min-height: 400px; |
4 | height-500 |
Applies minimum 500px of height to an element | min-height: 500px; |
Other classes
# | Class Name (Selector) | Declaration |
---|---|---|
1 | overflow-h |
overflow: hidden; |
2 | overflow-a |
overflow: auto; |
3 | clear-both |
clear: both; |
4 | dp-none |
display: none; |
5 | dp-block |
display: block; |
6 | dp-table |
display: table; |
7 | dp-inline-block |
display: inline-block; |
8 | dp-table-cell |
display: table-cell; |
9 | full-width |
width: 100%; |
JavaScript InitializationUpdated v1.9 top
Core javascript initialization is implemented in assets/js/app.js
through the "App" object as shown below. This approach enables an easy modular implementation to initialize jquery plugins and other application logics.
The App object only includes the initialization of the plugins that are used in almost every Unify page. Other plugins must be initialized independently, refer to the JavaScript Plugins below.
var App = function () {
...
...
}();
JavaScript Plugins Updated v1.9.2
For more detailed information click any link below
Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web.
CSS Installation
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
JavaScript Installation
Under <!-- JS Global Compulsory -->
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
Official Documentation
Demo
All Unify Pages
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript.
CSS Installation
No CSS Required
JavaScript Installation
Under <!-- JS Global Compulsory -->
<script src="assets/plugins/jquery/jquery.min.js"></script>
<script src="assets/plugins/jquery/jquery-migrate.min.js"></script>
Official Documentation
http://jquery.comDemo
All Unify Pages
Lightweight JavaScript library that generates circular graphs in SVG. Now with animation.
CSS Installation
No CSS Required
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/circles-master/circles.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/circles-master.js">
Initialization
To initialize the plugin, add the following line CirclesMaster.initCirclesMaster1();
or CirclesMaster.initCirclesMaster2();
to the jQuery function at the bottom of the HTML page:
Official Documentation
https://github.com/lugolabs/circlesDemo
shortcode_compo_charts.htmlCounter-Up is a jQuery plugin that animates a number from zero (counting up towards it)
CSS Installation
No CSS Required
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/counter/waypoints.min.js"></script>
<script src="assets/plugins/counter/jquery.counterup.min.js"></script>
Initialization
To initialize the plugin, add the following line: App.initCounter();
to the jQuery function at the bottom of the HTML page:
Official Documentation
https://github.com/bfintal/Counter-UpDemo
shortcode_compo_charts.htmlCube Portfolio is a powerful jQuery plugin that provides beautiful animated filtering, custom captions and it’s perfect for portfolios, galleries, team members, blog posts or any other ordered content.
CSS Installation
<link rel="stylesheet" href="assets/plugins/cube-portfolio/cubeportfolio/css/cubeportfolio.min.css">
<link rel="stylesheet" href="assets/plugins/cube-portfolio/cubeportfolio/custom/custom-cubeportfolio.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/cube-portfolio/cubeportfolio/js/jquery.cubeportfolio.min.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/cube-portfolio/cube-portfolio-4-ns.js">
Note The path depends on the Portfolio grid structure. In the above example 4 columns no space grid is chosen.
Official Documentation
assets/plugins/cube-portfolio/documentation
Demo
Used in Portfolio PagesFancyBox is a tool that offers a nice and elegant way to add zooming functionality for images, HTML content and multi-media on your webpages. It is built on the top of the popular JavaScript framework jQuery and is both easy to implement and a snap to customize.
CSS Installation
<link rel="stylesheet" href="assets/plugins/fancybox/source//jquery.fancybox.css.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/fancybox/source/jquery.fancybox.pack.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/fancy-box.js">
Initialization
To initialize the plugin, add the following line: FancyBox.initFancybox();
to the jQuery function at the bottom of the HTML page:
Official Documentation
http://fancyapps.com/fancybox/#examples/GitHub.
https://github.com/fancyapps/fancyBox/Demo
feature_gallery.htmlFont Awesome gives you scalable vector icons that can instantly be customized — size, color, drop shadow, and anything that can be done with the power of CSS.
CSS Installation
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
JavaScript Installation
No JavaScript Required
HTML
After you get up and running, you can place Font Awesome icons just about anywhere with the <i> tag
<i class="fa fa-camera-retro"></i> fa-camera-retro
fa-camera-retro
Official Documentation
http://fortawesome.github.io/Font-Awesome//Demo
shortcode_icon_fa.htmlSimple Line Icons is 162 simple stroke icons that are great for mobile applications, websites, user interfaces, etc. All icons were converted from the same beautiful simple line icon sets released previously on GraphicBurger.
CSS Installation
<link rel="stylesheet" href="assets/plugins/line-icons/line-icons.css">
JavaScript Installation
No JavaScript Required
HTML
<span class="icon-user"></span>
icon-user
Official Documentation
http://graphicburger.com/simple-line-icons-set-vol-1 http://graphicburger.com/simple-line-icons-set-vol-2 http://graphicburger.com/simple-line-icons-set-vol-3 http://graphicburger.com/simple-line-icons-set-vol-4Demo
shortcode_line.htmlgmaps.js allows you to use the potential of Google Maps in a simple way. No more extensive documentation or large amount of code.
CSS Installation
No CSS Required
Note If the map doesn't appear:
Then you probably have forgotten to link the file: HTML\assets\css\pages\page_contact.css
or the file: HTML\assets\css\style.css
. Alternatively however, you can specify a fixed height within your CSS or by using one of the Unify predefined height classes explained above.
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script src="assets/plugins/gmap/gmaps.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/pages/page_contacts.js"></script>
Initialization
To initialize the plugin, add the following line: ContactPage.initMap();
to the jQuery function at the bottom of the HTML page:
Set location
To change the location:
1. Navigate to the file HTML\assets\js\pages\page_contacts.js
2. Set the lat
and lng
coordinates of your location.
Official Documentation
http://hpneo.github.io/gmapsDemo
shortcode_maps_google.htmlSliding Horizontal Parallax moves multiple elements at the same time but at different speeds to create a parallax effect — the appearance of 3D movement.
CSS Installation
<link rel="stylesheet" href="assets/plugins/parallax-slider/css/parallax-slider.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<tscript src="assets/plugins/parallax-slider/js/modernizr.js"></script>
<script src="assets/plugins/parallax-slider/js/jquery.cslider.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/parallax-slider.js">
Initialization
To initialize the plugin, add the following line: ParallaxSlider.initParallaxSlider();
to the jQuery function at the bottom of the HTML page:
Official Documentation
http://tympanus.net/codrops/2012/03/15/parallax-content-slider-with-css3-and-jqueryDemo
index.htmlLayerSlider is a premium multi-purpose slider for creating image galleries, content sliders, and mind-blowing slide-shows with must-see effects. It uses cutting edge technologies to provide the smoothest experience possible, and it comes with more than 200 preset 2D and 3D slide transitions.
CSS Installation
<link rel="stylesheet" href="assets/plugins/layer-slider/layerslider/css/layerslider.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/layer-slider/layerslider/js/greensock.js"></script>
<script src="assets/plugins/layer-slider/layerslider/js/layerslider.transitions.js"></script>
<script src="assets/plugins/layer-slider/layerslider/js/layerslider.kreaturamedia.jquery.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/layer-slider.js">
Initialization
To initialize the plugin, add the following line: LayerSlider.initLayerSlider();
to the jQuery function at the bottom of the HTML page:
Official Documentation
assets/plugins/layer-slider/documentation
Demo
page_home1.htmlMasonry is a JavaScript grid layout library. It works by placing elements in optimal position based on available vertical space, sort of like a mason fitting stones in a wall. You’ve probably seen it in use all over the Internet.
CSS Installation
<link rel="stylesheet" href="assets/css/pages/blog_masonry_3col.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/masonry/jquery.masonry.min.js"></script>
<script src="assets/js/pages/blog-masonry.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/pages/blog-masonry.js">
Official Documentation
http://masonry.desandro.com//Demo
blog_masonry_3col.htmlTouch enabled jQuery plugin that lets you create beautiful responsive carousel slider.
CSS Installation
<link rel="stylesheet" href="assets/plugins/owl-carousel/owl-carousel/owl.carousel.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/owl-carousel/owl-carousel/owl.carousel.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/owl-carousel.js"></script>
Initialization
To initialize the plugin, add the following line: OwlCarousel.initOwlCarousel();
to the jQuery function at the bottom of the HTML page:
Official Documentation
http://owlgraphic.com/owlcarousel//Demo
shortcode_carousels.htmlSlider Revolution is a fully developed slide displaying system offering the capability to show images, videos and captions paired with simple, modern and fancy 3D transitions. This plugin features tons of unique transition effects, an image preloader, video embedding, autoplay that stops on user interaction and lots of easy to set options to create your own effects. All customization can be handled via jQuery Options, HTML 5 data-attributes and CSS!
CSS Installation
<link rel="stylesheet" href="assets/plugins/revolution-sliderrs-plugin/css/tools.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/revolution-slider/rs-plugin/js/jquery.themepunch.plugins.min.js"></script>
<script src="assets/plugins/revolution-sliderrs-plugin/js/jquery.themepunch.revolution.min.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/plugins/revolution-slider.js"></script>
Initialization
To initialize the plugin, add the following line: RevolutionSlider.initRSfullScreenOffset();
to the jQuery function at the bottom of the HTML page:
Official Documentation
assets/plugins/revolution-slider/documentation
Demo
page_home9.htmlSky Forms Pro is a set of beautiful form elements with large amount of javascript features: validation, masking, modals, ajax submit, datepickers. It allows you to create forms of any complexity and for any needs: login, registration, contacts, review, order, comment, checkout, etc.
CSS Installation
<link rel="stylesheet" href="assets/plugins/sky-forms-pro/sky-forms/css/sky-forms.css">
<link rel="stylesheet" href="assets/plugins/sky-forms-pro/sky-forms/custom/custom-sky-forms.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/sky-forms-pro/sky-forms/js/jquery.maskedinput.min.js"></script>
<script src="assets/plugins/sky-forms-pro/sky-forms/js/jquery-ui.min.js"></script>
<script src="assets/plugins/sky-forms-pro/sky-forms/js/jquery.validate.min.js"></script>
Internet Exploror
<!--[if lt IE 9]>
<script src="assets/plugins/sky-forms-pro/sky-forms/js/sky-forms-ie8.js"></script>
<![endif]-->
<!--[if lt IE 10]>
<script src="assets/plugins/sky-forms-pro/sky-forms/js/jquery.placeholder.min.js"></script>
<![endif]-->
Under <!-- JS Page Level -->
<!-- For Masking -->
<script src="assets/js/plugins/masking.js"></script>
<!-- For Datepicker -->
<script src="assets/js/plugins/datepicker.js"></script>
<!-- For Validation -->
<script src="assets/js/plugins/validation.js"></script>
Initialization
To initialize the plugin, add the following line to the jQuery function at the bottom of the HTML page: Masking.initMasking();
for masking, Datepicker.initDatepicker();
for datepicker, or Validation.initValidation();
for validation.
Official Documentation
assets/plugins/sky-forms-pro/documentation
Demo
shortcode_form_general1.htmlA jQuery plugin that sets a div or span to show a countdown to a given time.
CSS Installation
<link rel="stylesheet" href="assets/css/pages/page_coming_soon.css">
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/countdown/jquery.plugin.js"></script>
<script src="assets/plugins/countdown/jquery.countdown.js"></script>
Under <!-- JS Page Level -->
<script src="assets/js/pages/page_coming_soon.js"></script>
Initialization
To initialize the plugin, add the following line: PageComingSoon.initPageComingSoon();
to the jQuery function at the bottom of the HTML page:
Set countdown
To change the date and time of the countdown:
1. Navigate to HTML/assets/js/pages/page_coming_soon.js
2. Replace the whole function with the following function:
var PageComingSoon = function () {
return {
//Coming Soon
initPageComingSoon: function () {
$('#defaultCountdown').countdown({until: new Date(yyyy, mm-1, d, hh, mm, ss)})
}
};
}();
Official Documentation
http://keith-wood.name/countdown.htmlDemo
page_coming_soon.htmlA simple jQuery plugin that allows you to add a dynamically-resized, slideshow-capable background image to any page or element.
CSS Installation
No CSS required
Note The image is set using JS, please refer to the official documentation for more information.
JavaScript Installation
Under <!-- JS Implementing Plugins -->
<script src="plugins/bootstrap/js/bootstrap.min.js"></script>
Official Documentation
http://srobbin.com/jquery-plugins/backstretch/Demo
page_coming_soon.htmljVectorMap uses only native browser technologies like JavaScript, CSS, HTML, SVG or VML. No Flash or any other proprietary browser plug-in is required. This allows jVectorMap to work in all modern mobile browsers.
- Works in all modern browsers (including IE6-8)
- Looks great on any resolution because of its vector nature
- Many maps are available
- Custom maps could be created using converter
CSS Installation
<link rel="stylesheet" href="assets/plugins/vector-map/custom_jquery-jvectormap.css">
JavaScript Installation
Under <!-- JS Page Level -->
<script rel="stylesheet" href="assets/js/plugins/vector-map.js"></script>
Depending on which map style needed, one of the following js installations will be required to place
Under <!-- JS Implementing Plugins -->
<script src="assets/plugins/vector-map/jquery-jvectormap.js"></script>
<script src="assets/plugins/vector-map/jquery-mousewheel.js"></script>
<script src="assets/plugins/vector-map/jquery-mousewheel.js"></script>
<script src="assets/plugins/vector-map/lib/jvectormap.js"></script>
<script src="assets/plugins/vector-map/lib/abstract-element.js"></script>
<script src="assets/plugins/vector-map/lib/abstract-canvas-element.js"></script>
<script src="assets/plugins/vector-map/lib/abstract-shape-element.js"></script>
<script src="assets/plugins/vector-map/lib/svg-element.js"></script>
<script src="assets/plugins/vector-map/lib/svg-group-element.js"></script>
<script src="assets/plugins/vector-map/lib/svg-canvas-element.js"></script>
<script src="assets/plugins/vector-map/lib/svg-shape-element.js"></script>
<script src="assets/plugins/vector-map/lib/svg-path-element.js"></script>
<script src="assets/plugins/vector-map/lib/svg-circle-element.js"></script>
<script src="assets/plugins/vector-map/lib/vml-element.js"></script>
<script src="assets/plugins/vector-map/lib/vml-group-element.js"></script>
<script src="assets/plugins/vector-map/lib/vml-canvas-element.js"></script>
<script src="assets/plugins/vector-map/lib/vml-shape-element.js></script>
<script src="assets/plugins/vector-map/lib/vml-path-element.js"></script>
<script src="assets/plugins/vector-map/lib/vml-circle-element.js"></script>
<script src="assets/plugins/vector-map/lib/vector-canvas.js"></script>
<script src="assets/plugins/vector-map/lib/simple-scale.js"></script>
<script src="assets/plugins/vector-map/lib/numeric-scale.js"></script>
<script src="assets/plugins/vector-map/lib/ordinal-scale.js"></script>
<script src="assets/plugins/vector-map/lib/color-scale.js"></script>
<script src="assets/plugins/vector-map/lib/data-series.js"></script>
<script src="rrrassets/plugins/vector-map/lib/proj.jsrrr"></script>
<script src="assets/plugins/vector-map/lib/world-map.js"></script>
<script src="assets/plugins/vector-map/tests/assets/jquery-jvectormap-world-mill-en.js"></script>
Initialization
To initialize the plugin, add the following lines: VectorMap.initVectorMap();
and VectorMap.initMarkerVectorMap();
to the jQuery function at the bottom of the HTML page:
Official Documentation
http://jvectormap.comDemo
shortcode_maps_vector.htmlFonts Updated v1.9top
Unify Template uses Open Sans font for headings and some elements from Google Web Fonts. You are able to choose from more than 600+ fonts from Google Web Fonts. The font is linked in all HTML files at the <head>
section.
<!-- Web Fonts -->
<link rel="shortcut" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=cyrillic,latin">
Note Always remember to specify the font you choose in your CSS.
.example {
font-family: "Open Sans", Arial, sans-serif;
}
Example The specification for Open Sans font family in CSS.
Credits Updated v1.9 top
All plugins are located in assets/plugins/..
Name | Description | URL |
---|---|---|
Bootstrap | Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. | http://getbootstrap.com |
jQuery | jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. With a combination of versatility and extensibility, jQuery has changed the way that millions of people write JavaScript. | http://jquery.com |
Font Awesome | Font Awesome The iconic font designed for Bootstrap | http://fortawesome.github.io/Font-Awesome |
Line Icons | All 160 simple line icons are now embedded in a webfont for more convenient use on the web or in a native application. Big thanks to Jamal Jama for creating this awesome webfont. | http://graphicburger.com/simple-line-icons-webfont |
Parallax Slider | A simple parallax content slider with different animations for each slider element and a background parallax effect. | http://tympanus.net/codrops/2012/03/15/parallax-content-slider-with-css3-and-jquery |
OWL Carousel | Touch enabled jQuery plugin that lets you create beautiful responsive carousel slider. | http://owlgraphic.com/owlcarousel |
Backstretch | A simple jQuery plugin that allows you to add a dynamically-resized, slideshow-capable background image to any page or element. | http://srobbin.com/jquery-plugins/backstretch |
MIXITUP | A CSS3 and JQuery Filter & Sort Plugin (Version: 1.5.4) | https://mixitup-old.kunkalabs.com |
Counter-Up | Counter-Up is a jQuery plugin that animates a number from zero (counting up towards it). | https://github.com/bfintal/Counter-Up |
Pace.js | A beautiful progress indicator for your page load and ajax navigation. | http://github.hubspot.com/pace/docs/welcome |
Circles (Master) | Lightwheight JavaScript library that generates circular graphs in SVG. Now with animation. | https://github.com/lugolabs/circles |
Respond.js | A fast & lightweight polyfill for min/max-width CSS3 Media Queries (for IE 6-8, and more). | https://github.com/scottjehl/Respond |
Ladda Buttons | A UI concept which merges loading indicators into the action that invoked them. Primarily intended for use with forms where it gives users immediate feedback upon submit rather than leaving them wondering while the browser does its thing. | https://github.com/scottjehl/Respond |
HTML5 Shiv | The HTML5 Shiv enables use of HTML5 sectioning elements in legacy Internet Explorer and provides basic HTML5 styling for Internet Explorer 6-9, Safari 4.x (and iPhone 3.x), and Firefox 3.x. | https://github.com/aFarkas/html5shiv |
Countdown | jQuery Countdown Plugin | http://keith-wood.name/countdown.html |
GMaps | gmaps.js allows you to use the potential of Google Maps in a simple way. No more extensive documentation or large amount of code | http://hpneo.github.io/gmaps |
Brand Buttons | CSS buttons plugin | https://github.com/theaqua/bootstrap-brand-buttons |
Hover Effects | A collection of CSS3 powered hover effects to be applied to links, buttons, logos, SVG, featured images and so on. Easily apply to your own elements, modify or just use for inspiration. Available in CSS, Sass, and LESS. | http://ianlunn.github.io/Hover/ |
Login/Sign up Modal Window | This modal window allows users to login/signup into your website. Once opened, the user can easily switch from one form to the other, or select the reset password option. | https://codyhouse.co/gem/loginsignup-modal-window/ |
Masonry | Masonry is a JavaScript grid layout library. It works by placing elements in optimal position based on available vertical space, sort of like a mason fitting stones in a wall. You’ve probably seen it in use all over the Internet. | http://masonry.desandro.com/ |
Vector Maps | Many maps of the world, world regions, countries and cities are available for download from this site. All of them are made from the data in public domain or data licensed under the free licenses, so you can use them for any purpose free of charge. | http://jvectormap.com/ |
WOW Animation | Reveal CSS animation as you scroll down a page. By default, you can use it to trigger animate.css animations. But you can easily change the settings to your favorite animation library. | http://mynameismatthieu.com/WOW/ |
Animate.css | CSS animation plugin | https://daneden.github.io/animate.css/ |
Modernizr | It’s a collection of superfast tests – or “detects” as we like to call them – which run as your web page loads, then you can use the results to tailor the experience to the user. | https://modernizr.com/ |
Smooth Scroll | Allows for easy implementation of smooth scrolling for same-page links. | https://github.com/kswedberg/jquery-smooth-scroll |
Premium Plugin Credits Updated v1.9
Name | Description | URL |
---|---|---|
Master Slider | Master Slider is a premium image and content slider with super smooth hardware accelerated transitions. It supports touch navigation with pure swipe gesture that you have never experienced before. It’s a truly responsive and device friendly slider which works perfect in all major devices. Master Slider is an awesome layer slider as well, with the ability of adding any html contents (texts, images, …) in layers. It is easy to use, plus there are 25+ ready to use templates available for you. You almost have everything in Master slider which is the most complete among the best, hotspots, thumbnails, variety of effects, Video support and much more. | http://codecanyon.net/item/master-slider-jquery-touch-swipe-slider/6337671 |
Revolution Slider | Slider Revolution is a fully developed slide displaying system offering the capability to show images, videos and captions paired with simple, modern and fancy 3D transitions. This plugin features tons of unique transition effects, an image preloader, video embedding, autoplay that stops on user interaction and lots of easy to set options to create your own effects. All customization can be handled via jQuery Options, HTML 5 data-attributes and CSS! | http://codecanyon.net/item/slider-revolution-responsive-jquery-plugin/2580848 |
Layer Slider | LayerSlider is a premium multi-purpose slider for creating image galleries, content sliders, and mind-blowing slideshows with must-see effects. It uses cutting edge technologies to provide the smoothest experience that’s possible, and it comes with more than 200 preset 2D and 3D slide transitions. | http://codecanyon.net/item/layerslider-responsive-jquery-slider-plugin/922100 |
Cube Portfolio | Cube Portfolio is a powerful jQuery plugin that provides beautiful animated filtering, custom captions and it’s perfect for portfolios, galleries, team members, blog posts or any other ordered content. | http://codecanyon.net/item/cube-portfolio-responsive-jquery-grid-plugin/6372959 |
Sky Forms Pro | Sky Forms Pro is a set of beautiful form elements with large amount of javascript features: validation, masking, modals, ajax submit, datepickers. It allows you to create forms of any complexity and for any needs: login, registration, contacts, review, order, comment, checkout, etc. | http://codecanyon.net/item/sky-forms-pro/5414510 |
FancyBox | FancyBox is a tool that offers a nice and elegant way to add zooming functionality for images, html content and multi-media on your webpages. It is built on the top of the popular JavaScript framework jQuery and is both easy to implement and a snap to customize. | http://fancyapps.com/fancybox |
Image and Design credits
- - Google Fonts: http://www.google.com/fonts
- - Photo by DAVID ILIFF. License: CC-BY-SA 3.0: http://bit.ly/ZhuJG1
- - Showcase: http://www.pixeden.com/psd-web-elements/responsive-showcase-psd
- - Blurred backgrounds: http://www.cssauthor.com/10-beautiful-collection-of-blurred-backgrounds
- - Unsplash free hi-resolution photos: http://unsplash.com
- - Picjumbo totally free photos for your commercial & personal works: http://picjumbo.com
- - IM FREE A curated collection of free resources, all for commercial use.: http://imcreator.com/free
Premium Image Credits
Due to licencing rights following images are only used in demo for demonstration purposes and it can be purchased at wwww.photodune.net, http://peopleimages.com and http://deathtothestockphoto.com
Change Log top
Please do not forget to backup your files before the upgrade.
Version 1.9.3 – 01 April 2016
- FIXED: Version name (typo error) in the download package
- UPDATED: Animate CSS v4.5.1
Version 1.9.2 – 29 March 2016
- NEW: Courses Layout (One-Pages/Courses/index.html)
- NEW: Wedding Layout (One-Pages/Wedding/index.html)
- IMPROVEMENT: Documentation
- IMPROVEMENT: Busines Layout - promo and equal height blocks (One-Pages/Business/..)
- IMPROVEMENT: Spa Layout - vertical align texts in some blocks (One-Pages/Spa/..)
- IMPROVEMENT: Equal Height javascript codes (app.js)
- IMPROVEMENT: Header v8 for iPhones (app.js)
- FIXED: Google Maps for IE in Thematic Layouts
- FIXED: Different slips in (blocks.css)
- FIXED: Equal Height issue on Home Allure (page_home17.html)
Version 1.9.1 – 07 February 2016
- NEW: Business Layout (One-Pages/Business/index.html)
- NEW: Wealth Landing Page (Landing-Pages/Wealth/index.html)
- NEW: Consulting Landing Page (One-Pages/Consulting/index.html)
- NEW: Login and Registration Page (page_login_and_registration.html)
- NEW: Login Page Option 2 (page_login2.html)
- NEW: Registration Page Option 2 (page_registration2.html)
- NEW: 404 Error Page 4 (page_404_error4.html)
- NEW: 404 Error Page 5 (page_404_error5.html)
- NEW: 404 Error Page 6 (page_404_error6.html)
- NEW: Coming Soon Page v2 (page_coming_soon2.html)
- NEW: Coming Soon Page v3 (page_coming_soon3.html)
- NEW: Coming Soon Page v4 (page_coming_soon4.html)
- NEW: Coming Soon Page v5 (page_coming_soon5.html)
- NEW: Coming Soon Page v6 (page_coming_soon6.html)
- NEW: RTL Business
- NEW: RTL Agency
- NEW: RTL Travel
- NEW: RTL Lawyer
- NEW: RTL Architecture
- NEW: RTL Mobile App
- NEW: RTL Spa
- NEW: RTL Shipping
- IMPROVEMENT: Older version of Coming Soon, 404 Error pages pages
- IMPROVEMENT: Equal Height codes in app.js
- FIXED: Links for Breadcrumb options (blocks.css)
- FIXED: Multiple Progressbar issue (app.css)
- UPDATED: Layer Slider v5.6.0
- UPDATED: Cube Portfolio v3.5.1
Version 1.9 – 31 December 2015
- NEW: Agency Layout
- NEW: Lawyer Layout
- NEW: Travel Layout
- NEW: Architecture Layout
- NEW: Mobile App Layout
- NEW: Spa Layout
- NEW: Shipping Layout
- NEW: Hero Fashion
- NEW: Hero Gym
- NEW: Hero Photography
- NEW: Hero Restaurant
- NEW: Hero Web App Dark
- NEW: Hero Web App Light
- NEW: Home Aspire
- NEW: Home Allure
- NEW: Animated Titles (demo on promo block in the page: page_home15.html)
- NEW: CTA - Call to Actions (feature_call_to_actions.html)
- NEW: full-height statix text image bg slider (page_home2.html)
- NEW: full-height statix animated texts (page_home4.html)
- NEW: full-height Youtube video background (page_home5.html)
- NEW: on click sidebar navigation left and right (page_home17.html and page_home18.html)
- NEW: Blog Page Layout v4
- NEW: Modal Popups
- NEW: 2000+ Pro Line Icons
- UPDATED: Bootstrap v3.3.6
- UPDATED: Animate.css - v3.5.0
- UPDATED: WOW.js - v1.1.2
- UPDATED: Cube Portfolio v3.4.2
- UPDATED: Font Awesome 4.5.0
- UPDATED: Master Slider v2.16.3
- UPDATED/NEW: Revolution Slider v5+
- IMPROVEMENT: Documentation
- IMPROVEMENT: Shopping cart for mobile devices
- IMPROVEMENT: Default fixed header for Safari
- IMPROVEMENT: Default header language hover issue for iOS devices
- FIXED: One Page focus issue after click and scroll
- FIXED: Many reported minor bugs
Version 1.8 – 03 July 2015
- NEW: Blog Template
- NEW: RTL Unify Main
- NEW: RTL Unify Blog Template
- NEW: RTL Unify Shop UI Template
- NEW: RTL Unify One Page Template
- NEW: 60+ PSD files
- NEW: Master Slider Examples
- NEW: Incredible Home Page (page_home16.html)
- NEW: Static full-screen block in One Page (one_page_home1.html)
- NEW: Popup login/registration for One Page (one_page_home2.html)
- NEW: Language bar in One Page (one_page_home3.html)
- NEW: Centered logo - header v4 (feature_header_v4_logo_centered.html)
- NEW: Defaul Header without Topbar (feature_header_default_no_topbar.html)
- NEW: Defaul Centered Header (feature_header_default_centered.html)
- NEW: Header Login/Reg Popup (feature_header_default_login_popup.html)
- NEW: Header v8 (feature_header_v8.html)
- NEW: Footer v8 (feature_footer_v8.html)
- NEW: Feature Icon Blocks (feature_icon_blocks.html)
- NEW: Feature Team Blocks (feature_team_blocks.html)
- NEW: Feature Testimonials and Quotes (feature_testimonials_quotes.html)
- NEW: Feature News Blocks (feature_news_blocks.html)
- NEW: Blog Home Page (blog/index.html)
- NEW: Blog Page Layouts v1 (blog_page_layouts1.html)
- NEW: Blog Page Layouts v2 (blog_page_layouts2.html)
- NEW: Blog Page Layouts v3 (blog_page_layouts4.html)
- NEW: Blog Post Layout v1 (blog_post_layouts1.html)
- NEW: Blog Post Layout v2 (blog_post_layouts2.html)
- NEW: Blog Post Layout v3 (blog_post_layouts3.html)
- NEW: Blog Post Layout v4 (blog_post_layouts4.html)
- NEW: Blog Post Layout v5 (blog_post_layouts5.html)
- NEW: Blog Post Layout v6 (blog_post_layouts6.html)
- NEW: Blog Post Layout v7 (blog_post_layouts7.html)
- NEW: Blog Post Layout v8 (blog_post_layouts8.html)
- NEW: Blog Post Layout v9 (blog_post_layouts9.html)
- NEW: Blog Left Sidebar Example (blog_post_layouts_ls.html)
- NEW: Blog Full Width Example (blog_post_layouts_fw.html)
- NEW: Blog Grid: 1 Col (blog_grid_1.html)
- NEW: Blog Grid: 2 Col (blog_grid_2.html)
- NEW: Blog Grid: 3 Col (blog_grid_3.html)
- NEW: Blog Grid: 4 Col (blog_grid_4.html)
- NEW: Blog Grid: Full Width - 4 Col (blog_grid_4_fw.html)
- NEW: Blog Grid: Right Sidebar - 2 Col (blog_grid_2_rs.html)
- NEW: Blog Grid: Left Sidebar - 2 Col (blog_grid_2_ls.html)
- NEW: Blog Single Page (blog_single.html)
- NEW: Blog Home Boxed Page (blog_home_boxed.html)
- NEW: Blog Home Boxed Space Page (blog_home_boxed_space.html)
- UPGRADE: Bootstrap v3.3.5
- UPGRADE: jQuery v1.11.3
- UPGRADE: Master Slider v2.15.0
- UPGRADE: Cube Portfolio v2.3.3
- DROPPED: Glyphicons Pro (due to lincese changes)
- FIXED: Navigation alignemtn and search box in page_home6.html page
- FIXED: Footer logo in page_home9.html page
- FIXED: Default header z-index issue with FancyBox
- FIXED: Thumbnail FancyBox in the shorcodes page (Thanks to "Harald Meyer")
- FIXED: Header v3 spacing issue on hover (Thanks to "Dario")
- FIXED: Some design issues on dark layout styles
- FIXED: Header v7 (sidebar header) - content onclick with ajax call issue
- FIXED: Revolution Slider loading issue
- IMPROVEMENT: "Timeline v2" tag