Wednesday 13 April 2005 5:26:34 am
Hi, in order to set a limit to the width off the site I use the following code (besides max-width, there is additional code in order to control behaviour of IE6. Please look also here: http://www.svendtofte.com/code/max_width_in_ie/)
/* MY_CLASSES CSS */
div#allcontent
{
max-width:800px;
width:expression(document.body.clientWidth > 800? "800px": "auto" );
}
However, I can't see the desired effect in IE. Basically the hack works well, why is it different here (in ezp)?
|