HI
Hope someone can help
I have 2 sets of tabs on the page both are the same code and pointing to the same css, when the page loads everything is shos fine. But if you select one of the first set of tabs the first tab on the 2nd set of tabs then does not show its info, unless you click on another tab then back again.
I have tried adding in another set of css the same but with 2 at the end and this just ends up where the 2nd set do not show info at all, or become unselectable.
Does anyone know the reason and a fix for this please
<!-- the tabs -->
<ul class="css-tabs">
<li><a href="#first-tab">info</a></li>
<li><a href="#second-tab">info</a></li>
</ul>
<!-- tab "panes" -->
<div class="css-panes">
<div>
first tab information in here
</div>
<div>
2nd tab information in here
</div>
</div>
Thanks