7
Do you have a link to your website?
There is nothing easier then centering a div.
Let's say you have following html
le="color: #000000"><?php <div id="header"> Some header text </div>
To center it you need following css:
le="color: #000000"><?php #header{width: 900px; margin:0 auto;}
That's it! You do not need any other align or text-align
Imagine that your text in the header is centered and you want it to be on the left.
Then you need to change your css to this:
le="color: #000000"><?php #header{width: 900px; margin:0 auto; text-align:left; }
That is all you need.