Hello everyone, I have a quick question.
I want to increase the font size which is used in the regular text of my blog. I'm sure it is something to do with style.css, but I'm not quite sure which font to adjust.
Any help appreciated!
The site is here btw. I feel that the main text in my posts is a bit too small...
http://www.japannewbie.com/japanese_ads/
Also while we're on the subject, how would I increase the font temporarily, say of a few words in my post?
- Harvey
your font is globally defined in the body CSS, its near the top of the style.css, search for the word body, and you'll see it.
You can adjust that, or do this, for example:
#content p {font-size: 1.4em;}
THAT will only affect the content of posts that exist within <p> tags.
Thanks, the body line in my theme looked like this.
body{background:#f4f4f4 url(img/bg.gif) top center repeat-y; color:#303030; font:93% Verdana,Tahoma,Arial,sans-serif;}
Originally the font was at 76%, I changed it to 93%, now it's bigger, thanks!