I wanted to overide Actinics default font; size, and family used for LINKS.
After advice from this forum i set myself up with a set of statements in my actinic.css;
As you can see the font is very small.
I call the CSS style as follows;
but this does not seem to have any effect on the font style. So I am resorting to doing this every time a link font is called.
Why isn't my CSS working properly ?
Simon.
After advice from this forum i set myself up with a set of statements in my actinic.css;
HTML Code:
a.mylink.link{
color:NETQUOTEVAR:LINKCOLORCSS;
font-size:6pt;
text-decoration:none;
}
a.mylink.visited{
color:NETQUOTEVAR:VLINKCOLORCSS;
font-size:6pt;
text-decoration:none;
}
a.mylink.hover{
color:NETQUOTEVAR:HLINKCOLORCSS;
font-size:6pt;
text-decoration:none;
}
a.mylink.active{
color:NETQUOTEVAR:ALINKCOLORCSS;
font-size:6pt;
text-decoration:none;
}
I call the CSS style as follows;
HTML Code:
<td class="mylink" valign="top"><div align="left"><a href="CUSTOMVAR:AD1LINK">CUSTOMVAR:AD1TEXT</a></div></td
HTML Code:
<td valign="top"><div align="left"><a href="CUSTOMVAR:AD1LINK"><font color="#000000" size="1">CUSTOMVAR:AD1TEXT</font></a></div></td>
Simon.
Comment