I think this will be a temporary problem, however, so hopefully
Anyway, to fix it, try replacing the following in your style sheet (a la this tutorial):
body { background-color: #ffffff;
background-image: url("http://www.angelfire.com/scary/froda/sbg.jpg");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
margin-top: 0px; margin-left: 0px;
margin-right: 0px;
font-family: Trebuchet MS, sans-serif;
font-size: .7em;
color: #2d2d2d;
}
with the following:
body { background-color: #ffffff;
background-image: url("http://www.angelfire.com/scary/froda/sbg.jpg");
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
margin-top: 0px; margin-left: 0px;
margin-right: 0px;
font-family: Trebuchet MS, sans-serif;
font-size: 14px;
color: #2d2d2d;
}
You'll probably want to play around with the number value of "font-size" so everything looks the way you like it, but this should at least keep fonts standard on all computers and all browsers.
Edit: I just realized some people might just take this code line for line and copy-paste it into their style sheet. However, your style sheet is most likely different from the settings here. Basically I mean change font-size: 0.7em; (or whatever that number is) to font-size: 14px; (or whatever number you feels look best on your journal. in the body{} part of the style sheet.