My CSS is set such that the main page background is different than the surrounding (body) background:
The BannersAll side box background is set to the same color as mainWrapper:HTML Code:body { margin: 0; font-family: verdana, arial, helvetica, sans-serif; font-size: 75%; color: #000000; background-color: #336699; } . . . #mainWrapper { background-color: #ccffff; text-align: left; width: 95%; vertical-align: top; border: 1px solid #9a9a9a; }
All pages (in their various modes) display well, meaning that regardless of the browser's current width, the BannersAll right side box blends well into mainWrapper.HTML Code:.sideBoxContent { background-color: #ccffff; padding: 0.4em; }
However, in one page only (Order Information) there is a slight problem: The order information, which is displayed in a tabular format, "pushes" to the right the mainWrapper margin, while pushing to the right the BannersAll sidebox as well.
The result is that part of the BannersAll sidebox is displayed on the mainWrapper background and part of the BannersAll sidebox is displayed on the body background. This looks "unprofessional" and I would like to find a way to widen the mainWrapper background so that it always extends beyond the right sidebox(es).
Is there a way to do this?
Thanks,
Daniel






