For centering you're going to need to add a container around everything that you have right now (still inside the <body></body> tags). It'd be something like:
Code:
#container {
margin: 0 auto;
}
That's quicker and does the same job, I use that all the time for fixed layout. Tim has a the code for a liquid layout according to the link he provided