Here is a fix for people that are complaining about the small fonts on this site site w/ Safari.
Add the below code to a .css file, save it to a location on your computer and then tell Safari to use it. Go to the Safari prefs, then to the advanced tab and select the .css file under the style sheets area.
font[size="1"] {
font-size: 9pt;
}
font[size="2"] {
font-size: 9pt;
}
font[size="3"] {
font-size: 9pt;
}
Also add the below code to your .css if you would like Safari to have a glowing outline on links when you click on them.
:link:active, :visited:active { outline: 3px auto; }
The font code will make the minimum font size act like the older ver. of Safari did where it should not mess w/ any website layouts.