You can surround your content with a div that is set with the specific width of your page content and then assign a margin of left auto and right auto:
#main_wrapper {
width: 900px;
margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) auto right and left will centre it in the browser */
}
Abraham