Congrats on the new site
Could you add some larger font size options, please?
Google Chrome is completely retarded when it comes to scaling. When a fixed-width is set it will happily scale the entire layout of a site wider than the browser window. All you want to do is enlarge the fonts, but you wind up making the site unreadably wide in the process. Because Chrome also doesn't provide for a minimum font size, you're basically screwed. The obvious solution is not to use such a horribly deficient web browser, of course, but I had a quick look into the issue, and...
The offending styles are body {width: 1000px;} in template.css, and a couple of inline styles: #ja-wrapper {min-width: 981px;} and #ja-footer {width: 980px;}. Taking those out would probably be a pain, but I see that there's an easy solution, as you have a javascript font-size option which can be extended rather easily.
The changes required are:
(a) The limitation on switchFontSize() in ja.script.js:
(b) The matching styles in template.css.
If you could change (a) from:
Code:
if (CurrentFontSize+1 < 7)
to:
Code:
if (CurrentFontSize+1 < 12)
(or, maybe, something which looks sane like:
Code:
if (CurrentFontSize < 11)
) and add the following classes for (b), that would be much appreciated:
Code:
body.fs7{
font-size: 16px;
}
body.fs8{
font-size: 18px;
}
body.fs9{
font-size: 20px;
}
body.fs10{
font-size: 22px;
}
body.fs11{
font-size: 24px;
}
This is such an easy fix that I figured you wouldn't mind doing it