|
Hi...
At my fulltime job, we have a liquid layout for a page. There's a left-hand nav, and the main content which has the following class to determine its width...
{
margin-top:expression('20px');
min-width:565px;
width:expression(document.body.clientWidth < 800 ? '565px' : '75%' );
}
In Mozilla, when the user resizes the window, it keeps the proper position of left-nav and then the content.
In IE6, it bounces the right hand content under the left-nav.
I have to keep the layout as it is in Mozilla... that is, with the right hand content staying where it is.
Does anyone have any suggestions?
DZ
|