"Pricing Table by RowBootstrap"
Bootstrap 3.3.0 Snippet by RowBootstrap.com

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<h2 class="main-title">Bootstrap Pricing Table</h2>
<!-- Extra code, do not imcluded with buttons -->
<div class="container">
<div class="row">
<div class="col-lg-4 col-lg-offset-4 margin-bottom-50 text-center">
<a href="http://goo.gl/7eZlKk" class="btn text-center btn-primary" data-wow-delay="0.7s" target="_blank">Live Preview</a>
<a href="http://goo.gl/wZV7jH" class="btn text-center btn-success" data-wow-delay="0.7s" target="_blank">Download The Source Code</a>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<!-- Price Table Item -->
<div class="price-table text-center">
<div class="price-table-heading">
<h4 class="title">FREE PLAN - A</h4>
</div>
<div class="price-table-body">
<p class="value">$0<small>/month</small></p>
</div>
<ul class="list-group">
<li class="list-group-item"><i class="icon-ok text-success"></i> Personal use</li>
<li class="list-group-item"><i class="icon-ok text-success"></i> Unlimited projects</li>
<li class="list-group-item"><i class="icon-ok text-success"></i> 27/7 support</li>
</ul>
<div class="price-table-footer"> <a class="btn btn-lg btn-success" href="#">BUY NOW!</a> </div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
font-family: 'Lato', sans-serif;
font-size: 16px;
line-height: 28px;
}
.main-title {
font-weight: 700;
text-align: center;
margin: 50px 0;
}
.margin-bottom-20 {
margin-bottom: 20px;
}
.margin-bottom-50 {
margin-bottom: 50px;
}
/* =================================
Price Table
================================= */
.price-table {
background: none;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
border: 7px solid #eeeeee;
-moz-transition: all .3s ease;
-o-transition: all .3s ease;
-webkit-transition: all .3s ease;
}
.price-table:hover {
background: rgba(0,0,0, .03);
border-color: #0093DD;
}
.price-table .price-table-heading {
color: #333333;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
$(document).ready(function() {
//Sort random function
function random(owlSelector){
owlSelector.children().sort(function(){
return Math.round(Math.random()) - 0.5;
}).each(function(){
$(this).appendTo(owlSelector);
});
}
$("#owl-wrap").owlCarousel({
navigation: true,
navigationText: [
"<i class='icon-chevron-left icon-white'><</i>",
"<i class='icon-chevron-right icon-white'>></i>"
],
beforeInit : function(elem){
//Parameter elem pointing to $("#owl-demo")
random(elem);
}
});
});
// Nivo Lightbox
$('a').nivoLightbox({
effect: 'fadeScale', // The effect to use when showing the lightbox
theme: 'default', // The lightbox theme to use
keyboardNav: true, // Enable/Disable keyboard navigation (left/right/escape)
clickOverlayToClose: true, // If false clicking the "close" button will be the only way to close the lightbox
onInit: function(){}, // Callback when lightbox has loaded
beforeShowLightbox: function(){}, // Callback before the lightbox is shown
afterShowLightbox: function(lightbox){}, // Callback after the lightbox is shown
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: