If its a size issue then the default text size may have been reduced from the standard 16px to something smaller and then the text will appear very small (tools, options, content, default font).
I usually use a method like this which gets around this issue by specifying the size in px.
Code:
/* main css */
body{
font-size: 13px;
}
Code:
/* IE only CSS Document */
body {font-size:x-small;f\ont-size:small}/*ie5 and 5.5. that are one size out*/
body table{font-size:x-small;f\ont-size:small}/* ie5.+ bad inheritance into tables */
Bookmarks