Hello
I have been trying to change the text colour of my speed bar for a while now and have given up. It has been modified a bit. I can get the vertical bars to change colour, but unfortunately the text will not change from black.
TOP_MENU.TPL
Code:
{if $printable ne ''}
{include file="customer/top_menu_printable.tpl"}
{else}
<TABLE border="0" cellpadding="0" cellspacing="0">
{if $speed_bar}
<TR>
<TD valign="top" align="right">
<TABLE border="0" cellpadding="0" cellspacing="0">
<TR>
{section name=sb loop=$speed_bar}
{if $speed_bar[sb].active eq "Y"}
<TD valign="top">{include file="customer/tab.tpl" tab_title="<A href=\"`$speed_bar[sb].link`\">`$speed_bar[sb].title`</A>"}</TD>
<TD width="1">[img]{$ImagesDir}/spacer.gif[/img]</TD>
{/if}
{/section}
</TR>
</TABLE>
</TD>
</TR>
{/if}
<TR>
</TABLE>
{/if}
TAB.TPL
Code:
<table border="0" cellpadding="0" cellspacing="5">
<tr>
<td class=".TabFont" align=center><FONT class=".TabFont">{$tab_title}</FONT>|</td>
</tr>
</table>
Relevant CSS
Code:
.TabBar {
COLOR: #ffffff;
.TabFont {
COLOR: #ffffff;
FONT-SIZE: 12px;
}