Thank You, thank you and thank YOU!
But, just one more thing regarding the link colours.... ive created a new class in skin1.css for the minicart links and then tried applying it in the mini_cart.tpl cell where the links are, but it doesnt work.
What am I missing? Is it a syntax error or something like that or am I applying it in the wrong place?
Thanks again, really appreciate your help and promise never to bother you again with this one when I get it right!
javascript
:emoticon('

')
Smile
skin1.css code:
}
.minicart: link {
COLOR: #ffff00; TEXT-DECORATION:none;
}
.minicart: hover {
COLOR: #ffffff; TEXT-DECORATION:underline;
}
.minicart: visited {
COLOR: #ffffff; TEXT-DECORATION:none;
}
.minicart: active {
COLOR: #ffffff; TEXT-DECORATION:none;
}
mini_cart.tpl code:
{* $Id: minicart.tpl,v 1.12 2004/07/06 14:00:12 svowl Exp $ *}
<TABLE border="0" cellpadding="2" cellspacing="0">
<TR>
<TD rowspan="2" width="55">
{if $minicart_total_items > 0}
[img]{$ImagesDir}/basket_full.gif[/img]{else}[img]{$ImagesDir}/basket_empty.gif[/img]{/if}
</TD>
<TD class="minicart">{if $minicart_total_items >0}{$lng.lbl_items}:</TD>
<TD class="minicart">{$minicart_total_items}{else}<lef t>
{$lng.lbl_cart_is_empty}</left>{/if}</TD>
</TR>
<TR>
<TD class="minicart">{if $minicart_total_items > 0}
{$lng.lbl_total}: </TD>
<TD >{include file="currency.tpl" value=$minicart_total_cost}{/if}</TD>
</TR>
</TABLE>
