Forum Moderators: phranque
also, how can you make a page fill up the entire screen regardless of the resolution without having to scroll left and right in Dream weaver?
once again, sorry for the basic questions but I am stumped. thanks in advance for the info.
From what you are asking it sounds like you have a page that is composed of a series of tables. The table widths are probably set to a fixed size rather than a percentage.
To center it add this to your main <table> tag:
align="center" To make your page fill the full screen change your table widths to percentages like 100% for example rather than a fixed value like 750.
Using percentage instead of pixels is what keeps things under control at different screen resolutions. A table set at 750 pixels will be 750 pixels wide no matter what the screen resolution is. A table set with a percentage will take up a percentage of the display width instead of a fixed size, so will better accommodate itself to various resolutions.