If you want to center your divs first you should design your site aligned to the top left of your page.
Then, you can create a "wrapper" div around all of your AP divs and with CSS assign a "relative" position to the wrapper and center it with "auto" margins.
The CSS for the wrapper should look like this (Note that the width should be the width of your content):
#wrapper {
position: relative;
width: 1024px;
margin-right: auto;
margin-left: auto;
}
You can find a Tutorial on how to center a "wrapper" div
here.
I hope this helps
*Always share a link to your site and rate the posts. This is a free service for you and for us.