Trying to change the font color of a link h2.
I guess the default "a" is taking over with another color.
I have
Code:
.sponsors h2 a {
color:#FFF;
}
Then
Code:
<h2 id="sponsors"><strong>
<a href="#" title=" " target="_blank" class="sponsors">BLAH</a>
</strong></h2>
Should it be this?
Code:
a:sponsors {
color:#FFF;
}
I know it's probably right in under my nose but I can't think straight right now.
