If you want to use the AJAX Tab content script in your page you might have to change the existing structure of your page. You can replace your existing page structure with one that gives you the AJAX Tab content script.
You can make the modification like the following :
Code:
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#default" rel="ajaxcontentarea">Intro</a></li>
<li><a href="index.htm" rel="ajaxcontentarea"><img src='images/1m1.gif' border='0'></a></li>
<li><a href="index-1.htm" rel="ajaxcontentarea"><img src='images/1m2.gif' border='0'></a></li>
<li><a href="index-2.htm" rel="ajaxcontentarea"><img src='images/1m3.gif' border='0'></a></li>
<li><a href="index-3.htm" rel="ajaxcontentarea"><img src='images/1m4.gif' border='0'></a></li>
<li><a href="index-4.htm" rel="ajaxcontentarea"><img src='images/1m5.gif' border='0'></a></li>
<li><a href="index-5.htm" rel="ajaxcontentarea"><img src='images/1m6.gif' border='0'></a></li>
</ul>
The above code can directly replace your table based code (Note that you have to use your own details like page name, image names, etc in the above code.
In 'ajaxtabs.css' file you can find a CSS class - contentstyle where you can find a 'width' property that determines the width of each tab, you can adjust it according to your requirement.
Hope this helps.
Bookmarks