Lori Brown wrote:
> http://www.ertcorp.com/layoutTest/
>
> It looks and behaves fine in FF3 and IE7 but blows up in IE6 on XP,
> tested on BrowserCam.
Well, as you've written in your stylesheet: /* zoom is for stupid IE
bugs */ ... and 'hasLayout' tends to trigger all kinds of absurd
behavior in IE6. In your case it moves IE6' "3-px jog bug" from the
content onto the containers, making them too wide and dropping.
I suggest you take care of all the "3-px jog bug" issues 'hasLayout'
causes, by adding this...
* html #navContainer, * html .leftCol, * html .rightCol {
margin-right: -3px;
}
* html .leftCol, * html .rightCol {
overflow-x: hidden;
}
...and then look for a suitable 'min-width' solution for IE6 since it
doesn't understand that CSS property.
The addition of...
* html .leftCol pre, * html .rightCol pre {
position: relative;
}
...can help you a little bit in the mean time, by letting the
pre-elements overflow visible on narrow windows.
regards
Georg
--
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/