Centering problem

Status
Not open for further replies.

phandentium

In Runtime
Messages
186
Recently I decided to design a website for my friend. Now I made this nice little website with a decent template but there is one problem.

You see, it doesn't center correctly on Internet Explorer 7, it centers correctly on Firefox and Opera however. I looked through the source but I found nothing that could lead to this hassle.

Please post a solution if you can,
Here is the website: http://www.wow.mmo3d.com
 
well thats not the best way to center the page...put it in a container then just center it.

Code:
#containername {
text-align: center;
margin: auto;
}
 
If you do what "iamchel" said, you have to define what you want to access that part of the CSS with the div tags.

Example:

Code:
<div id="containername"> YOUR CENTERED CONTENT </div>
 
Well thanks for the help but I got the problem resolved. I am just a really, really messy html coder.
 
Status
Not open for further replies.
Back
Top Bottom