I'm trying to change the colour and size of the product links showing in basket.
I've created the following CSS in the style sheet:
And referenced this in the html within Act_shoppingcart.xml as follows:
The code is not working though, so I've made a mistake somewhere. After several hours, I can't spot it.
Here is a url: http://www.magicalwonders.com/acatal...sumables.shtml
The specified class is appearing in the right place, but that seems to be as far as it gets!
Can anyone point me in the right direction?
Many thanks,
Myles
I've created the following CSS in the style sheet:
Code:
a.basket { color: black ; font-size: 0.9em ; font-weight: bold; text-decoration: none ; } a:visited.basket { font-size: 0.9em ; color: red ; font-weight: bold; text-decoration: none ; } a:hover.basket { font-size: 0.9em ; color: black ; font-weight: bold; }
Code:
<TABLE BORDER=0 WIDTH=100% CELLSPACING=0 CELLPADDING=0 > <TR> NETQUOTEDEL: REFERENCE <TD WIDTH=90 class="smallerfont">NETQUOTEVAR: PRODREF</TD> NETQUOTEDEL: REFERENCE <TD WIDTH=280 class="basket">NETQUOTEVAR: PRODUCTNAME <Actinic:REMOVE TAG="DuplicateLinks"> <BR>NETQUOTEVAR: DUPLICATELINKCAPTION <Actinic:XMLTEMPLATE NAME="DuplicateLinkLine"> <BR>NETQUOTEVAR: DUPLICATELINK </Actinic:XMLTEMPLATE> </Actinic:REMOVE> </TD> <TD WIDTH=60 ALIGN=RIGHT class="smallerfont">NETQUOTEVAR: QUANTITY</TD> </TR> </TABLE>
Here is a url: http://www.magicalwonders.com/acatal...sumables.shtml
The specified class is appearing in the right place, but that seems to be as far as it gets!
Can anyone point me in the right direction?
Many thanks,
Myles
Comment