This is a very simple thing to do with CSS. Here's all you need:
<body> <div id="wrapper"> ... </div> </body>
In this example, the div with the id of "wrapper" is what we want to make centered and fixed width. Now for the CSS:
body { margin: 0; padding: 0; text-align: center; } #wrapper { margin: 0 auto; border: 1px solid red; padding: 0; width: 720px; text-align: left; }
Then within your wrapper, just fill it in with your content. Hope that helps.
Web Site Promotions