Stretch?

liunx

Guest
Hey, I have a couple of questions please, if you don't mind. Any help you can give is much appreciated. <br />
<br />
At the moment, my website (HTML) is made up of a table, with 2 columns, the left for navigation with a background image, and the right for the logo/content. <br />
At the moment, you can 'stretch' the page smaller and it starts hiding some of the background image of the left column, how can i stop it being resized and shrinking?<br />
<br />
Any help you can give is much appreciated. Thanks!!!<!--content-->There are a couple of things you can do<br />
<br />
<table><br />
<tr><br />
<td width=xxx>.....</td><br />
<td>....</td><br />
</tr><br />
</table><br />
<br />
or a trick I like to use to allow the table to expand but only contract to a limited size<br />
<table><br />
<tr><br />
<td><img src=http://www.webdeveloper.com/forum/archive/index.php/transparant.gif width=xxx height=1><br> .....</td><br />
<td>....</td><br />
</tr><br />
</table><!--content-->ahh so you just have to specify a width?<!--content-->
 
Back
Top