Is there a CSS I can use to change my body font to Georgia?
The blog I need help with is atxfashioneur.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Is there a CSS I can use to change my body font to Georgia?
The blog I need help with is atxfashioneur.com.
The following example uses a font stack to set the base font, and that means it will cover any text that doesn't have separate specific CSS rule to set a font for other types of elements (such as headings).
body {
font-family: Georgia, Times New Roman, Times, serif !important;
}
To learn more about font stacks, check out this post:
http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/
This topic has been closed to new replies.