- assets/css (Template CSS) - assets/fonts (Icon Fonts) - assets/ico (Favivon) - assets/img (All Images) - assets/js (Template JS) - assets/php (PHP files) - 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
- theme.css - (Main CSS file)
- (Theme predefined colors)
- theme-blue-1.css
- theme-blue-2.css
- theme-color.css
- theme-cumin.css
- theme-gold.css
- theme-gray.css
- theme-green-1.css
- theme-green-2.css
- theme-orange-1.css
- theme-orange-2.css
- theme-pink.css
- theme-purple-1.css
- theme-purple-2.css
- theme-red-1.css
- theme-red-2.css
- theme-yellow-1.css
- theme-yellow-2.css
<!-- JS Global --> <script src="assets/plugins/jquery/jquery-1.11.1.min.js"></script> <script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script> <script src="assets/plugins/bootstrap-select/js/bootstrap-select.min.js"></script> <script src="assets/plugins/superfish/js/superfish.min.js"></script> <script src="assets/plugins/jquery.sticky.min.js"></script> <script src="assets/plugins/prettyphoto/js/jquery.prettyPhoto.js"></script> <script src="assets/plugins/owl-carousel2/owl.carousel.min.js"></script> <script src="assets/plugins/swiper/js/swiper.jquery.min.js"></script> <!-- JS Page Level --> <script src="assets/plugins/isotope/jquery.isotope.min.js"></script> <script src="assets/js/theme-ajax-mail.js"></script> <script src="assets/js/theme.js"></script>The initializations and parameters (sliders, effects, etc.) are contained in assets/js/theme.js
@import url(https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700); @import "../fonts/uni_sans_heavy-webfont.css";
body {
font-family: 'Poppins', sans-serif;
font-size: 14px;
line-height: 2;
background: #ffffff;
color: #a5a4a4;
-webkit-font-kerning: auto;
-webkit-font-smoothing: antialiased;
-webkit-backface-visibility: visible !important;
position: relative;
overflow-x: hidden;
}
and
.section-title span {
font-family: 'uni_sansheavy_caps', 'Poppins', sans-serif;
letter-spacing: 0.06em;
display: inline-block;
}
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 to your image logo
<!-- Logo -->
<div class="logo">
<a href="index.html"><img src="assets/img/... path to your image logo ..." alt="ThemeBox"/></a>
</div>
<!-- /Logo -->
<div class="main-slider">
<div class="owl-carousel" id="main-slider">
<!-- Slide 1 -->
<div class="item slide1 jumbotron-section jb1 with-overlay">
<div class="caption">
<div class="container">
<div class="div-table">
<div class="div-cell">
<div class="caption-content">
<div class="jumbotron text-center">
<h4 class="jumbotron-title-sub">Creativity is our passion</h4>
<h1 class="jumbotron-title">WE ARE <span class="text-color">THEMEBOX</span></h1>
<ul class="jumbotron-tags">
<li>Creative</li>
<li>Professional</li>
<li>Fast</li>
</ul>
<p class="btn-row">
<a class="btn btn-theme btn-rounded btn-theme-lg" href="#">BROWSE ALL TEMPLATES</a>
<a class="btn btn-theme btn-rounded btn-theme-lg btn-theme-light" href="#">LEARN MORE</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- /Slide 1 -->
<!-- Slide 2 -->
{ ... }
<!-- /Slide 2 -->
</div>
</div>
// Main slider
if (mainSlider.length) {
mainSlider.owlCarousel({
//items: 1,
autoplay: false,
autoplayHoverPause: true,
loop: true,
margin: 0,
dots: true,
nav: true,
navText: [
"<i class='fa fa-angle-left'></i>",
"<i class='fa fa-angle-right'></i>"
],
responsiveRefreshRate: 100,
responsive: {
0: {items: 1},
479: {items: 1},
768: {items: 1},
991: {items: 1},
1024: {items: 1}
}
});
}
You can find more documentation here http://owlgraphic.com/owlcarousel/