HI,
Your page is ok but the design will ulimately fail becuase IE has no min-width. You can set a min-width for mozilla which will stop the page from getting smaller but you would need to use some js for ie to do that or use ie only expressions.
Something like this
Code:
<!--[if gte IE 5]>
<style type="text/css">
#outer {width:expression( documentElement.clientWidth < 760 ? (documentElement.clientWidth == 0 ? (body.clientWidth < 760 ? "760" : "auto") : "760px") : "auto" );}
</style>
<![endif]-->
Assuming your main page wrapper is called outer and holds everything.
Then you could just set a min-width in the body for moziila .
Code:
body {min-width:760px}
I think thats the only solution or using a table to hold everything.
Paul
Bookmarks