In the content center, we first complete the page in a div, then center the #content inside that wrapper div.
your css will look like this:
#wrapper { width: 100%; height: auto; } #content { margin: 0 auto; width: 700px; }
your html will look like this:
<div id="wrapper"> <div id="content"> Content Stuffs </div> </div>
valen source share