Question about using html for a banner in website

liunx

Guest
Ok i see alot of websites and forums that have their banners fit fully accross that top of the page no matter if you in 800x600 or 1024x764 resolutions.I personally run my monitor in 800x600 resolution but i know many others run theirs in 1024x764 resolutions.My problem is this, when i put my montitor in 1024x764 my banner shrinks, leaving it much smaller and it does not fit fully accros the top of my page like the banner did in 800x600 resolution.<br />
<br />
I would like to know how do i get my banner to fit fully accross the top of my screen no matter if im using 800x600 or 1024x764 resolutions?<br />
<br />
Please help me out cause this problem i have been having has been going on for the last year or so and i plan on making a new sports page but i really would like to know how this is done before i start my page.<br />
<br />
Thanks, Jonjon<!--content-->You could put you banner in a table with the width set in percentages. I put my banner in percentages, and it doesn't look too bad when its viewed at different res. (But, it was made for a 800x600)<!--content-->Well the banner size is 468 px * 60 px....<br />
So create a top table with 3 cells and a bgcolor like the banner.<br />
<table width="100%" border="0" cellspacing="1" cellpadding="1" bgcolor="#000000"><br />
<tr><br />
<!-- Row 1 Column 1 --><br />
<td align="center"><br />
&nbsp;<br />
</td><br />
<!-- Row 1 Column 2 --><br />
<td align="center"><br />
<img src=http://www.htmlforums.com/archive/index.php/"../black-banner.gif" width="468" height="60" alt=""><br />
</td><br />
<!-- Row 1 Column 3 --><br />
<td align="center"><br />
&nbsp;<br />
</td><br />
</tr><br />
</table><!--content-->
 
Back
Top