Never had a problem trying to do this before.
I am attempting to centre the entire page.
Some code:
body{
margin:0;
padding:0;
color:#333333;
font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
font-size:0.85em;
}
#container{
width:960px;
float:left;
margin:0 auto;
}
Is there anything wrong with that?
Anyone got any general problems it could be?
You must remove
float: leftfrom#container. Other than that, it’s fine.