vote up 1 vote down star

I have my fonts set in my style.css (http://turquoisegrotto.com/style.css) and my website still seems to use sans serif. What is the problem here? My site: http://turquoisegrotto.com/

flag

78% accept rate

2 Answers

vote up 4 vote down check

The commas in your CSS font-family specification need to be outside the quotes.

For example:

font-family: "Arial", "Verdana", sans-serif; /* And you should really 
omit the quotes if it's only one word */

Not

font-family: "Arial, Verdana, sans-serif";

Otherwise, the CSS parser thinks you're looking for a font called "Arial, Verdana, sans-serif", which clearly doesn't exist.

link|flag
Right, that's why I said "you should really omit the quotes if it's only one word." – Daniel Straight May 23 at 18:27
Thank you very much! – William May 23 at 18:30
vote up 2 vote down

Try removing your "" from the font-family definition:

font-family: tahoma, sans-serif;

Like that. Only put the " around when you have multiple words such as

font-family: "mutiple word font name",tahoma, sans-serif;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.