Hi Bella Forma
I tried what you advised and the text is still staying black. this is how the files look now, incase I did it wrong, or you can see something else.
With the top menu tpl file, there is a reference to a tab title here
Code:
tab_title="<A href=\"`$speed_bar[sb].link`\">`$speed_bar[sb].title`</A>"}</TD>
Just wanted to make sure this has nothing to do with the text in the tabs.
Thanks for your help
CSS
Code:
TEXT-TRANSFORM: uppercase;
}
.TabBar {
COLOR: #ffffff;
}
.TabFont {
COLOR: #ffffff;
FONT-SIZE: 12px;
}
.CatMenuItemOff
Tabs.tpl
Code:
<table border="0" cellpadding="0" cellspacing="5">
<tr>
<td class="TabBar" align=center>{$tab_title}|</td>
</tr>
</table>
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}