dan_the_man said:
When you view my Web page (no matter what I set my screen resolution
to) there is a lot of white space to the right. I would like to have
my Web page fill up the entire screen like I see other Web pages do.
How do I do this?
Thanks,
As others have said, frames are not an ideal solution for most things.
It also seems irrelevant to your problem, unless you already have frames.
(Do you? If so, then my answer needs rethinking)
Try specifying the size of the page as 100%.
In the <head> section
<style type="text/css">
body {width:100%}
</style>
Because you are seeing white space, I think you must have some other style
which is restricting the width.
Check what is there now and change it if necessary.