Use a CSS parent container width of about 900px and center it with margin-left and margin-right of auto.
#container {
width: 900px;
margin:0 auto;
border: 1px dotted red;
}
Use floats and margins to align inner elements (boxes) within the parent container.
http://alt-web.com/DEMOS/3-CSS-boxes.shtml
Nancy O.