PDA

View Full Version : Full Screen Display web Page


bman
07-03-2007, 03:34 PM
I'm creating a web page that needs to be 980px wide. I'm aligning it to the left and top, making the div's 100%, and using backgrounds to fill the balance of the screen. That's fine for screen resolutions of 1024px and larger, but those who still have an 800px screen resolution will see the site all jumbled up, and not readable.

Is there any way to maintain the 100% div's (as opposed to 980), and still have it display properly (even if you have to scroll right) for smaller screen resolutions?

Pegasus
07-03-2007, 04:06 PM
Without seeing the code you're using, it's hard to say what will help you.

Peg

bman
07-03-2007, 05:23 PM
The page is basically a series of three-column tables that total 980 px wide. To fill the screen, I set the width at 100%, and used a background.

<table cellspacing="0" cellpadding="0" width="100%" background="page/r1BG.gif">
<tr>
<td width="580"><image here></td>
<td width="400"><image here></td>
<td>nbsp;</td>
</tr>
</table>

I hope this clears it up for everyone.