All fonts on my blog should be Geneva; Arial. However, in Chrome and Safari, the right sidebar font is serif. I've thoroughly checked the code throughout and there is no mention of serif fonts anywhere. All are marked as Geneva; Arial.
My blog is at http://www.thinkoutsidein.com/blog
Any help appreciated!
danielsim
Member
Posted 3 years ago #
I had a quick look at your css, according to webkit inspector you have declared as font-family:'geneva, helvetica, arial', sans-serif;
you can just use font-family: geneva, helvetica, arial, sans-serif; (see no quote marks) and it should render properly. Throughout the style sheet sometimes you have different quoting patterns around font families, if you ditch the ''s in all of them it should be cool.
The ONLY font names that should have quotes surrounding them (") are those with more than one word, such as "Times New Roman".
Ah ok, that's great folks, thanks a lot!