Components & Pricing Tables


Theme Components

This theme as lot of components built in. You can visit demo page of this theme where you can view typography and theme components page and get the code of every element. You will understand these elements much better on those pages because they are fully functional on demo website. These components are:

  • Responsive Carousel/slider ready to deploy anywhere you want in your content or even block
  • jQuery tabs horizontal and vertical
  • Accordian box
  • jQuery tooltips in all directions
  • Modal window
  • jQuery Popovers in differnet directions
  • and more you can get from bootstrap’s website

Pricing tables

This theme has beautiful build in Pricing table feature. You can insert pricing tables from 3 to 7 columns in your page. Visit demo page of pricing table and grab those easy to implement codes. Let me show you code of 3 column pricing table here.

<div class="tables3 clearfix">
	<div class="ptable">
		<ul class="plan">
			<li class="head"><h2>Silver Plan</h2></li>
			<li>Best Support</li>
			<li>Unlimited Bandwidth</li>
			<li>WWW Support</li>
			<li>Unlimited Colors</li>
			<li>Best Support</li>
			<li>Unlimited Bandwidth</li>
			<li>WWW Support</li>
			<li>Unlimited Colors</li>
			<li class="price">$9.95/mo</li>
			<li class="signup"><a class="btn btn-large btn-theme"> Sign Up</a></li>
		</ul>
	</div>			
	
	<div class="ptable">
		<ul class="plan prefered"><!--this 'prefered' class is need only for table plan that you want to display as highlighted-->
			<li class="head"><h2><span class="color">Gold</span> Plan</h2></li>
			<li>Best Support</li>
			<li>Unlimited Bandwidth</li>
			<li>WWW Support</li>
			<li>Unlimited Colors</li>
			<li>Best Support</li>
			<li>Unlimited Bandwidth</li>
			<li>WWW Support</li>
			<li>Unlimited Colors</li>
			<li class="price">$19.95/mo</li>
			<li class="signup"><a class="btn btn-large btn-theme"> Sign Up</a></li>
		</ul>
	</div>	
	
	<div class="ptable">
		<ul class="plan">
			<li class="head"><h2>Bronze Plan</h2></li>
			<li>Best Support</li>
			<li>Unlimited Bandwidth</li>
			<li>WWW Support</li>
			<li>Unlimited Colors</li>
			<li>Best Support</li>
			<li>Unlimited Bandwidth</li>
			<li>WWW Support</li>
			<li>Unlimited Colors</li>
			<li class="price">$29.95/mo</li>
			<li class="signup"><a class="btn btn-large btn-theme"> Sign Up</a></li>
		</ul>
	</div>						
</div>