Changing body fonts?
-
Is there a CSS I can use to change my body font to Georgia?
The blog I need help with is: (visible only to logged in users)
-
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/
- The topic ‘Changing body fonts?’ is closed to new replies.