Hi,
It looks as though you are asking for max-width routine. Unfortunately ie doesn't do max-width so will have to either change your design or use a script to control it.
You could use an expression as follows (although its not valid css).
Code:
<style type="text/css">
body {max-width:1000px;}/* for mozilla etc*/
</style>
<!--[if gte IE 5]>
<style type="text/css">
#wrapper{width:expression((document.body.clientWidth > 1000)?"1000":"auto")}
</style>
<![endif]-->
Then wrap a wrapper around your page as follows.
Code:
<body>
<div id="wrapper">
........page content goes here etc.......
</div>
</body>
</html>
Hope that's what you meant
Bookmarks