Hi Harrycool,
you did mention limiting the width and height of the page.
'height' does work, but it will always set the page to that size, regardless of if you have enough page content to fill it or not.. which, on the 'height' part, will make the page look odd and somewhat blank.
try max-height in css.
eg: <div style="width:500px; max-height:500px"> content </div>
Hope this helps!
Rob =)





by: OnthraxPosted on 2009-03-20 at 03:48:09ID: 23938180
Put a div tag around your content and set it to a fixed width.
<html>
<body>
<div style="width:800px;">
your content here
</div>
</body>
</html>