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):```
h4, h5, h6, label, h4.optionName, legend, address, .sideBoxContent, .larger
{
font-size: 0.8em;
}
You could try adding an overriding style specifically for labels inside sideboxes:```
.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 ```
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 ```
style="width: 95%"
-Ng_