I'm not sure if you are still developing for 5, but if not this would be a great addition for 6 if it doesn't have it already.

1. For the ul with the quicktabs_tabs class, it would be great if each list-item had a custom class for each. Something like this:

<ul class="quicktabs_tabs">
  <li class="tab-1"><a href="#">Specifications</a></li>
  <li class="tab-2"><a href="#">What's in the Box</a></li>
  <li class="tab-3 active"></li>
  <li class="tab-4"><a href="#">Related Products & Accessories</a></li>
</ul>

I would also suggest adding the same classes (ie same class for tab & tab main-section) to the same to the ul with the quicktabs-main list-items. That way if you need to make specific changes or highlight a tab somehow you can. Right I have no hooks except for the active tab.

Thanks,
Rene

Comments

rhache’s picture

After working with codexmas on this, we determined that changing line 506 from this

$output .= '<li><a href="#">'. $tab['title'] .'</a></li>';

to this:

$output .= '<li class="tab-'. $i .'"><a href="#">'. $tab['title'] .'</a></li>';

works perfectly.

Thanks,
Rene

katbailey’s picture

Status: Active » Fixed

Hi Rene,
I have now added a theme function so that the output for the tabs can be themed. Please upgrade to the 1.4 release.

Katherine

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.