Can anybody please help me, I am editing Act_Primary.html,
I have 4 text links at the bottom of the page which look like this.
Home | Shop Front | View Basket | Checkout
Here is the html
<td height="27" colspan="3" align="center" valign="middle" background="greenBlueSpacer.gif" bgcolor="#FFFFFF">
<a href="NETQUOTEVAR:NAVBHOMELINK">Home</a> | <a href="NETQUOTEVAR:NAVBCATALOGLINK" >Shop
Front</a> | <a href="NETQUOTEVAR:NAVBCARTLINK">View Basket</a> | <a href="NETQUOTEVAR:NAVBCHECKOUTLINK">Checkout</a></td>
This is the code in the body tag
<BODY TEXT="NETQUOTEVAR:FGCOLOR" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" OnLoad="NETQUOTEVAR:ONLOAD" NETQUOTEVAR:BGIMAGE NETQUOTEVAR:BGCOLOR NETQUOTEVAR:LINKCOLOR NETQUOTEVAR:VLINKCOLOR NETQUOTEVAR:ALINKCOLOR>
ALL I want to do is change the colour of the links as they are picking up the colours set by actinic ( from the toolbar, design , colors).
I have added a new reference into the actinic style sheet as follows,
.myLink{
color: #FFCC66
font-size:x-small;
text-decoration:none;
}
.myLink:hover{
color: #FFCC66
font-size:x-small;
text-decoration:underline;
}
.myLink:visited{
color: #FFCC66
font-size:x-small;
text-decoration:underline;
}
.myLink:active{
color: #FFCC66
font-size:x-small;
text-decoration:none;
}
And have referenced the styles as follows
<a href="NETQUOTEVAR:NAVBHOMELINK" class="myLink">Home</a> | <a href="NETQUOTEVAR:NAVBCATALOGLINK" class="myLink">Shop
Front</a> | <a href="NETQUOTEVAR:NAVBCARTLINK" class="myLink">View Basket</a> | <a href="NETQUOTEVAR:NAVBCHECKOUTLINK" class="myLink">Checkout</a>
This does NOT work, I have also tried using <span class="myLink"> this does not work either.
I have phoned actinic support but they could not help me either. This is so simple its infuriating!!!!!
Regards
Peter
I have 4 text links at the bottom of the page which look like this.
Home | Shop Front | View Basket | Checkout
Here is the html
<td height="27" colspan="3" align="center" valign="middle" background="greenBlueSpacer.gif" bgcolor="#FFFFFF">
<a href="NETQUOTEVAR:NAVBHOMELINK">Home</a> | <a href="NETQUOTEVAR:NAVBCATALOGLINK" >Shop
Front</a> | <a href="NETQUOTEVAR:NAVBCARTLINK">View Basket</a> | <a href="NETQUOTEVAR:NAVBCHECKOUTLINK">Checkout</a></td>
This is the code in the body tag
<BODY TEXT="NETQUOTEVAR:FGCOLOR" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" OnLoad="NETQUOTEVAR:ONLOAD" NETQUOTEVAR:BGIMAGE NETQUOTEVAR:BGCOLOR NETQUOTEVAR:LINKCOLOR NETQUOTEVAR:VLINKCOLOR NETQUOTEVAR:ALINKCOLOR>
ALL I want to do is change the colour of the links as they are picking up the colours set by actinic ( from the toolbar, design , colors).
I have added a new reference into the actinic style sheet as follows,
.myLink{
color: #FFCC66
font-size:x-small;
text-decoration:none;
}
.myLink:hover{
color: #FFCC66
font-size:x-small;
text-decoration:underline;
}
.myLink:visited{
color: #FFCC66
font-size:x-small;
text-decoration:underline;
}
.myLink:active{
color: #FFCC66
font-size:x-small;
text-decoration:none;
}
And have referenced the styles as follows
<a href="NETQUOTEVAR:NAVBHOMELINK" class="myLink">Home</a> | <a href="NETQUOTEVAR:NAVBCATALOGLINK" class="myLink">Shop
Front</a> | <a href="NETQUOTEVAR:NAVBCARTLINK" class="myLink">View Basket</a> | <a href="NETQUOTEVAR:NAVBCHECKOUTLINK" class="myLink">Checkout</a>
This does NOT work, I have also tried using <span class="myLink"> this does not work either.
I have phoned actinic support but they could not help me either. This is so simple its infuriating!!!!!
Regards
Peter
Comment