We are running a content management system that uses xsl to generate some output. When it's all said and done I end up with something like this.
<td class="Normal">
<span class="linkClass"><!--http://link1.com--><a href="http://link1.com" target="_blank">http://link1.com</a></span>
</td>
My css has link class defined as this
.linkClass
{
font-family: Tahoma, Arial, Helvetica;
font-size: 12px;
font-weight: bold;
color:#679966;
text-decoration:underline;
}
.linkClass a:link
{
font-family: Tahoma, Arial, Helvetica;
font-size: 12px;
font-weight: bold;
color:#679966;
text-decoration:underline;
}
The problem I'm having is FF is not picking up that CSS. The link is still just plain blue. Is there some way I can fix this? Note: I have also tried just
<td class="linkClass">
<a href="http://link1.com" target="_blank">http://link1.com</a>
</td>
to no avail