Quote Originally Posted by beadedlily
The only comment I have is that in IE the font is quite tiny. Not so small as to be unusable but smaller then I'd like. Is there a fix for this? I realize that there is a lot of info in a very tight space and it may be unavoidable.
First, thank you. :)

The sidebox itself has no font styling-it is just following your stylesheet. The style that affects it is in your main stylesheet.css (line 51):
Code:
h4, h5, h6, label, h4.optionName, legend, address, .sideBoxContent, .larger
{
    font-size: 0.8em;
}
The text is both sideBoxContent and a label (because it's a label for the email input). FF seems to parse this okay, but IE seems to apply the style 2x (once for each part), so you are getting a font-size of .8 x .8 em, or ~0.6em.

You could try adding an overriding style specifically for labels inside sideboxes:
Code:
.sideBoxContent label { font-size:1em !important;}
(you may have to play around with the actual size setting to get it right)


Also, since your sideboxes are so narrow, you may want to edit the sidebox template and adjust the width of the email input field. It uses
Code:
style="width: ' . ($column_width-30) . 'px"
by default, but you might want to change that 30 to something smaller, like 10, or change that entire calculation to
Code:
style="width: 95%"
-Ng_