For Shade Tabs, the easiest way to have multiple rows of tabs with respect to Tab Content Script is actually just to embed multiple menus (UL tags). Move the ID attribute from the UL tag to a DIV instead that wraps around all the tabs. So for example:
Code:
<div id="cattabs">
<ul class="shadetabs">
<li><a href="#" rel="dog1" class="selected">Tab 1</a></li>
<li><a href="#" rel="dog2">Tab 2</a></li>
<li><a href="#" rel="dog3">Tab 3</a></li>
</ul>
<ul class="shadetabs" style="margin-top: 5px">
<li><a href="#" rel="dog4" class="selected">Tab 4</a></li>
<li><a href="#" rel="dog5">Tab 5</a></li>
<li><a href="#">Tab 6</a></li>
</ul>
</div>
The beauty of Tab Content script is that it scans the links generically for special meaning within a container with the specified ID, whether that container contains.
Bookmarks