Do you mean replace the current list based structure with image tabs instead? You should be able to do this by first adding image tags inside each <li> element:
Code:
<ul id="maintab2" class="shadetabs">
<li class="selected"><a href="#" rel="tcontent1"><img src="1.gif" /></a></li>
<li><a href="#" rel="tcontent2"><img src="2.gif" /></a></li>
<li><a href="#" rel="tcontent3"><img src="3.gif" /></a></li>
<li><a href="#" rel="tcontent4"><img src="4.gif" /></a></li>
</ul>
Then, inside tabcontent.css, remove any rules that target the A element. In other words, remove the below chunk from the file:
Code:
.shadetabs li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #778;
color: #2d2b2b;
background: white url(shade.gif) top left repeat-x;
}
.shadetabs li a:visited{
color: #2d2b2b;
}
.shadetabs li a:hover{
text-decoration: underline;
color: #2d2b2b;
}
.shadetabs li.selected{
position: relative;
top: 1px;
}
.shadetabs li.selected a{ /*selected main tab style */
background-image: url(shadeactive.gif);
border-bottom-color: white;
}
.shadetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;
}
Bookmarks