View Single Post
  #21  
Old 05-24-2004, 08:25 PM
  adpboss's Avatar 
adpboss adpboss is offline
 

X-Man
  
Join Date: Feb 2003
Location: Ontario, Canada
Posts: 2,389
 

Default

This is my last suggestion. I gotta get back to work. Good luck, I hope this gets your imagination going. You can figure this out for yourself I am sure!

Work from the original code. Add this after the TAB entry.

Code:
.Tabcustom:link { COLOR: Teal; TEXT-DECORATION: none; } .Tabcustom:visited { COLOR: Teal; TEXT-DECORATION: none; } .Tabcustom:hover { COLOR: Aqua; TEXT-DECORATION: underline; } .Tabcustom:active { COLOR: Teal; TEXT-DECORATION: none; }

Change in tab.tpl

OLD
<td width=85 height=30 class=Tab align=center>{$tab_title}</td>

NEW
<td width=85 height=30 class=Tab align=center><font class=Tabcustom>{$tab_title}</font></td>
Reply With Quote