I've upgraded my account so that I can make the font of my body text bigger (readers complain). I'm using the Thirteen theme, which has the following code in the style sheet:
body {
margin: 0;
padding: 0;
background: #4E5706 url(images/bg.gif);
color: #000;
font-size: x-small;
font-family: "Lucida Sans Unicode", Tahoma, Arial, sans-serif;
text-align: center;
voice-family: "\"}\"";
voice-family: inherit;
font-size: small;
}
html>body {
font-size: small;
}
I copied this, and then changed each font-size designation so that it was "medium" instead of small (or x-small) and pasted it in the CSS editor, so it looks like this:
body {
background:#4E5706 url('images/bg.gif');
color:#000;
font-family:"Lucida Sans Unicode", Tahoma, Arial, sans-serif;
text-align:center;
voice-family:inherit;
font-size:medium;
margin:0;
padding:0;
}html>body {
font-size:medium;
}
But it hasn't changed the size of the font in my entries; it's still coming out small.
Help?