[Disclaimer: WordPress absolute novice]
Is there a way to globally reduce the font size in WP? The fonts are way too big (personal preference) when compared with other online documents.
[Disclaimer: WordPress absolute novice]
Is there a way to globally reduce the font size in WP? The fonts are way too big (personal preference) when compared with other online documents.
You mean fonts in this forum and in the codex? Use Firefox and hit [CTRL] - [-] ;)
No, I mean the fonts in a WP installation. I do not want a user to have to reduce his own font size when reading my blog and then have to return it to normal when going back. I'm not sure what the codex is.
In that case, edit your blog's style.css and add/change font-size in "body" to whatever value you'd like. Example:
body {
// more options might be here
font-size: 12px;
}
This is not so much a wordpress matter as it is css, so it would be a good idea to read up on some basic css knowlegde.
Thanks. I understand a little CSS, but I was not clear where to make the global change.
This topic has been closed to new replies.