Hertz Pro - Tab Shortcode

Hi,

How can I change the default nav tabs from #drupal #development #hosting and #design to display different ones in the a href links, when I try changing these the tabs do not work. I can't find the reference in the CSS.

Thanks

Comments

user
Submitted by admin on Tue, 11/03/2015 - 07:37

I hope you have already read the TAB SHORTCODE tutorial:
http://www.drupar.com/hertzpro-theme-documentation/shortcode-tab

It works like this. It has two parts.

  1. Nav
  2. Content

Sample code for two tabs will be:

<ul class="nav-tabs">
<li><a href="#tab1">Tab Title One</a></li>
<li><a href="#tab2">Tab Title Two</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane" id="tab1">
Content under Tab Title One..
</div>
<div class="tab-pane" id="tab2">
Content under Tab Title Two
</div>
</div>

Please check place of tab1 and tab2.

In nav, tab1 and tab2 should start with # sign.

user
Submitted by domtaylor on Tue, 11/03/2015 - 09:09

yeah I did. Cheers that makes sense now