Hello,
I have a container that I'm using for the Text Module. The container code is:
[SOLPARTACTIONS]
<table width="100%" height="1%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td height="8" id="ContentPane" runat="server"></td>
</tr>
</table>
I also have the following text in my Text Module:
<A class=headerlinkstext href="subscribe.asp">Subscribe</A>
And the following class in my CSS file:
.headerlinkstext {
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
line-height: normal;
font-weight: bold;
font-variant: normal;
text-transform: none;
color: #cccccc;
text-decoration: none;
text-align: right;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
Here is my question...
I can change the font from 11px to 16px, save the file, and it shows up at 16px on the site. However, if change the font color it never actually shows up as anything different than dark blue. (#003366)
Is there some other setting that is overiding my font color in my css table? What else could be preventing the font from changing?
Thanks for your help!
- Adam