/assets/css (Template CSS) /assets/ico (Favicon) /assets/img (All Images) /assets/js (Template JS) /assets/plugins (Theme plugins)
<div class="row">
<div class="col-sm-12">
{ Level 1 column }
<div class="row">
<div class="col-sm-6"> { Level 2 } </div>
<div class="col-sm-6"> { Level 2 } </div>
</div>
</div>
</div>
If you need more information, please visit this site: http://getbootstrap.com/css/#grid
/assets/
/css/
/header.css - (Headers CSS file)
/normolize.css - (CSS Reset file)
/style.css - (Main CSS file)
<!-- JS Global --> <script src="assets/plugins/main-jquery/jquery-2.2.4.min.js"></script> <script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script> <script src="assets/plugins/bootstrap-select/dist/js/bootstrap-select.min.js"></script> <script src="assets/plugins/owl.carousel.2/owl.carousel.min.js"></script> <script src="assets/js/isotope.pkgd.min.js"></script> <script src="assets/plugins/Swiper-3.3.1/dist/js/swiper.jquery.min.js"></script> <script src="assets/plugins/prettyphoto-master/js/jquery.prettyPhoto.js"></script> <script src="assets/plugins/subscribe-better-master/jquery.subscribe-better.min.js"></script> <script src="assets/plugins/malihu-custom-scrollbar-plugin-master/js/minified/jquery.mCustomScrollbar.min.js"></script> <!-- Custom JS --> <script src="assets/js/theme.js"></script>
@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic); @import url(https://fonts.googleapis.com/css?family=Oswald:400,300,700);
body {
font-family: 'Roboto', sans-serif;
font-weight: normal;
background: #fcfcfc;
color: #000;
font-size: 14px;
-webkit-font-kerning: auto;
-webkit-font-smoothing: antialiased;
-webkit-backface-visibility: visible !important;
overflow-x: hidden;
}
and
.font-2, .section-title, .title-1, .widget-title { font-family: 'Oswald', sans-serif; }
.font-1 { font-family: "Roboto",sans-serif; }
We are using FontAwesome for social media icons in this template. Insert icons like this:
<i class="fa fa-google-plus"></i>
Here's the complete list of available icons from FontAwesome docs:
Open index.html and find this part of code. Just change path 'assets/img/logo/logo-black.png' to your image logo.
<div class="header-logo">
<a href="index.html"> <img src="assets/img/logo/logo-black.png" alt="logo" /> <span class="logo-title">Ecommerce Html</span> </a>
<span class="nav-trigger toggle-hover visible-xs">
<a class="toggle-icon fa fa-bars" href="#"> </a>
</span>
</div>
/*------------------- Product Slider -------------------*/
if (jQuery('.deal-slider, .prod-featured-slider').length > 0) {
jQuery(".deal-slider, .prod-featured-slider").owlCarousel({
...
});
}
/*------------------- Testimonial Slider -------------------*/
if (jQuery('.testimonial-1').length > 0) {
jQuery(".testimonial-1").owlCarousel({
...
});
}
/*------------------- Brand Slider -------------------*/
if (jQuery('.brand-slider').length > 0) {
jQuery(".brand-slider").owlCarousel({
...
});
}
/*------------------- Blog Slider -------------------*/
if (jQuery('.blog-slider-1').length > 0) {
jQuery(".blog-slider-1").owlCarousel({
...
});
}
/*------------------- Realated Blog Slider -------------------*/
if (jQuery('.rel-blog-slider').length > 0) {
jQuery(".rel-blog-slider").owlCarousel({
...
});
}
<!-- Testimonials Start -->
<section class="sec-space black-mask testimonial-sec">
<div class="container theme-container">
<div class="testimonial-1 dots-white white-clr fsz-14">
<div class="item">
<div class="testimonial-wrap">
<div class="testimonial-img">
<img src="assets/img/testimonials/1.png" alt="testimonial" />
</div>
<div class="testimonial-content">
<p> <i> « Curabitur blandit mollis lacus. Nam adipiscing. Vestibulum eu odio. Vivamus laoreet. Nullam tincidunt adipiscing enim. Phasellus tempus. Proin viverra, ligula sit amet ultrices semper, ligula arcu tristique sapien, a accumsan nisi mauris ac eros. Fusce neque. » </i> </p>
<b> Alise sevage </b>
</div>
</div>
</div>
<div class="item">
...
</div>
<div class="item">
...
</div>
</div>
</div>
</section>
<!-- / Testimonials Ends -->
/*------------------- Testimonial Slider -------------------*/
if (jQuery('.testimonial-1').length > 0) {
jQuery(".testimonial-1").owlCarousel({
dots: true,
loop: true,
autoplay: false,
autoplayHoverPause: true,
smartSpeed: 100,
nav: false,
margin: 30,
responsive: {
0: {items: 1}
}
});
}
You can find more documentation here http://owlgraphic.com/owlcarousel/
// prettyPhoto
// ---------------------------------------------------------------------------------------
if (jQuery('.caption-link').length > 0) {
jQuery("a[data-gal^='prettyPhoto']").prettyPhoto({
theme: 'facebook',
slideshow: 5000,
autoplay_slideshow: true
});
}
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&key=YOUR_API_KEY"></script>
To set your google map and map marker coordinate open assets/js/theme.js and find code below.
center: new google.maps.LatLng(40.6700, -73.9400) // map coordinates
center: new google.maps.LatLng(your coordinates goes here)
position: new google.maps.LatLng(40.6700, -73.9400), // marker coordinates
position: new google.maps.LatLng(your coordinates goes here)
var image = 'assets/img/logo/logo-black.png'; // marker icon
newYear = new Date(newYear.getFullYear() + 1, 1 - 1, 1);
newYear = new Date(2016, 12-1, 25);