Bootstrap Tabs
Create a tabs with tab item has title is text or icon.
Syntax
[dexp_tabs class=""][dexp_tab title="Title" icon=""]content[/dexp_tab][/dexp_tabs]
Result
<div id="dexp-tab-585b9f91d4e95" class="dexp-tab-wrapper horizontal clearfix">
<ul class="nav nav-tabs">
<li class="active"></li>
<li class=""></li>
</ul>
<div class="tab-content">
<div id="dexp-tab-item-166652233" class="active tab-pane fade in">
CONTENT
</div>
<div id="dexp-tab-item-1916259462" class="tab-pane fade in">
CONTENT
</div>
</div>
</div>
Attributes
title: is title of a tab item.
icon: can be FontAwesome class such as "fa fa-home" or any font which theme support.
class: custom class for tab wrapper.
content: can use tags html as <h1>, <p> <div>,... .