Tab Groups

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
cashmash
Posts: 1
Joined: Thu 20. Nov 2014, 18:15

Tab Groups

Post by cashmash »

Hi,

I am grouping teaser in tabs.

Is it possible to wrap the tab-content-items into one div with a specific class?

Code: Select all

<div class="tab-container">
   <ul class="tab-navigation">
      <li><a>...</a></li>
      ...
   </ul>

   <div class="tab-content-item-1">...</div>
   <div class="tab-content-item-2">...</div>
   <div class="tab-content-item-3">...</div>

</div>
to

Code: Select all

<div class="tab-container">
   <ul class="tab-navigation">
      <li><a>...</a></li>
      ...
   </ul>
   <div class="tab-content">
      <div class="tab-content-item-1">...</div>
      <div class="tab-content-item-2">...</div>
      <div class="tab-content-item-3">...</div>
   </div>
</div>
User avatar
Oliver Georgi
Site Admin
Posts: 9888
Joined: Fri 3. Oct 2003, 22:22
Contact:

Re: Tab Groups

Post by Oliver Georgi »

No, this is not possible here and also not necessary. What should it help you with?
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
nameless1
Posts: 878
Joined: Sun 27. Apr 2008, 23:22

Re: Tab Groups

Post by nameless1 »

to use with bootstrap js
Post Reply