I am wondering how to set my page size, what I mean is my res is set at 1152 X 864 and when I view my site it is centered in my browser but when I view at res 720 X 480 there is a scroll bar on the bottom of the page, and the page is no longer centered. So is there a way so that the site would be centered on all resolutions?
If you are using Dynamic HTML Editor 2 you just go to the page properties and choose center Page.
If you use Dynamic HTML Editor 1.8 and your page has a width of approcimately 772 pixels (which will make it fit exactly on a 800x600 screenresolution) you need to add: <style type="text/css"> #centered { margin: 0px auto; width: 780px; position: relative } body { text-align: center } </style>
between teh head tags and: <div id="centered"> right after the opening body tag and: </div> right before the closing body tag.
All in all it would look something like this: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> <title</title> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"> #centered { margin: 0px auto; width: 780px; position: relative } body { text=align: center } </style> </head> <body> <div id="centered"> here comes the content of the site (all of it) </div> </body> </html>