Since the width of the two columns is less than the width of the wrapper (i.e. 959px versus 1280px), you need to put two columns in a container with a fixed width:
<div id="wrapper">
<div id="column_container">
<div id="column1"></div>
<div id="column2"></div>
</div>
</div>
And then do something like:
#column_container {
width: 959px;
margin: 0 auto;
}
source
share