Paul Jung wrote:
> Thank you very much, but it didn't solve the problem, please look 
> http://www.europeeurope.net/index.php?pageNum_Recordset2=8&totalRows_Recordset2=4913
> 
Note that IE5.0 won't react on "zoom: 1;" as 'hasLayout' trigger - it
needs a dimensional trigger like "height: 1%;".

IE5.0 needs the 'hasLayout' trigger to #header David gave you, as a
stabilizer to avoid the "dropped page" problem.

You should also restrict the last conditional comment so it doesn't end
up styling all future IE/win versions.

For IE7 down through to IE5.01, you need (only) these basic corrections...

<!--[if IE 5]>
<style type="text/css">
.thrColFixHdr #sidebar2 { margin-left: 0;}
.thrColFixHdr #sidebar2 .newreply {width: 100%;}
</style>
<![endif]-->
<!--[if lte IE 7]>
<style type="text/css">
.thrColFixHdr #mainContent, #header { height: 1%; margin: 0;}
.thrColFixHdr #sidebar1, .thrColFixHdr #sidebar2 {display: inline;}
#sidebar2 .newreply {width: 99%;}
</style>
<![endif]-->

...and you will probably want to fix the width of the table in .newreply
to prevent it from overflowing its container and get "cut off", which
seems to be a problem in all browsers.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
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/

Reply via email to