This is how I always do it, will make you page 780px wide, and then x space on the edges.
CSS--
body{margin:0;padding:0}
#body{margin:0 auto;padding:0;border:solid black;border-width:0 1px; width:780px}
HTML
<body>
<div id="body">
Content
</div>
</body>