Hi Guys, A Question that i cannot really find an answer for is the following:
I am using bootstrap for my website and on my home page i have navigation tabs with 3 tabs filled with content.
So in the admin section yes, i have a page called home page but how do i edit all 3 tabs using the cms?
The tabs have all a title, icon, and description. Anyone up for this challenge?
Just in case you are wondering i am trying to build a conference website the layout will always stay the same just content that will change :)
<ul class="nav nav-tabs nav-justified">
<li class="active"><a href="#first-tab" data-toggle="tab"><i class="icon icon-office-03"></i>Conference</a></li>
<li><a href="#second-tab" data-toggle="tab"><i class="icon icon-faces-users-01"></i>Attendees</a></li>
<li><a href="#last-tab" data-toggle="tab"><i class="icon icon-education-science-18"></i>Conference Venue</a></li>
</ul>
<div id="tab-content-headings" class="tab-content">
<div id="first-tab" class="tab-pane fade in active"></div>
<div id="second-tab" class="tab-pane fade"></div>
<div id="last-tab" class="tab-pane fade"></div>
</div>