In the file style.css, on line 322, at least on the demo page, you'll find this:
Code:
.entry, .entry p { font:14px/1.5em sans-serif; }
You won't have to install any new font (unless you want to of course), browsers already support lots of different fonts. You could i.e. just remove the sans-serif font and let the browser fall back to it's default.
Edit:
Also, on line 75 in the same file, you'll find this:
Code:
body {background:#e4e2db;color:#555;font:12px sans-Serif;}
The .entry class sets the font for the entry texts, the body sets the font for the entire document, so you'll want to change that too.
__________________
Your answers will only be as good as your question. Formulate it well and give all the necessary information.
Last edited by lizciz; 10-30-2011 at 05:40 AM..
|