This should be a very simple procedure of putting a container in the centre of the page.
<style type="text/css">
body{
margin: 0;
padding: 0;
}
#container{
width:960px;
float:left;
margin:0 auto;
}
</style>
...
<div id="container">
Content
</div>
Can anyone tell me why container
isn't centered?
Thanks