If you look at http://www.antiriddle.com, in the right column in the content box, you'll see "Don't have an account? Register here." here is a normal clickable link (<a>) but for some reason it's being rendered in a different font than the normal paragraph text. I declared the following in my stylesheet, hoping that it would apply the font-family to all text elements, but the link is obviously in some different font:
You can see the difference most clearly when looking at the letter "e". Any ideas why this might be happening? Declaring an a { } stylesheet property hasn't fixed the problem.
Code:
* {
padding: 0;
margin: 0;
color: #FFF;
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
font-size: 0.975em;
}
Comment