|
Create a table with 3 columns and a width of 100%. Set the width of the center column to whatever width you want your site to be (around 750 pixels is pretty common). Put all your content in the center cell, like so:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td width="750">all your content goes here</td>
<td> </td>
</tr>
</table>
|