Page sizing for browser window size

liunx

Guest
My boss loves weird screen resolutions, big monitors and tall skinny browsers because he hates blank spaces. My problem is when he resizes the browser window everything gets scrunched to the left. How do I prevent this? Scrollbars are cool with him.<br />
<br />
Thanks in advance:)<!--content-->Try putting the page in a table and then fix the width.<br />
<br />
examples:<br />
<br />
<table width=500><br />
<tr><br />
<td><br />
contents here<br />
</td><br />
</tr><br />
</table><br />
<br />
(for netscape 4.x compliance: )<br />
<table width=500><br />
<tr><br />
<td><img src=http://www.htmlforums.com/archive/index.php/"blank.gif" height=1 width=500></td><br />
</tr><br />
<tr><br />
<td><br />
your contents here<br />
</td><br />
</tr><br />
</table><br />
<br />
(blank.gif could be a 1x1 pixel transparent gif image)<!--content-->
 
Back
Top