I making a website for a client that runs fine in firefox and chrome but not in explorer (all versions) explorer floats the website to left and margins get crazy.
i am completely clueless if its because of margins or something else and i must fix it asap else i will be in big trouble! i seriously need help.
This is what i have in my css body
body
{
margin:0 auto;
background:#fff;
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
font-size: 12px;
}
you can view the website here
Please help me please.....
It's because you have javascript in your page source before the opening doctype declaration.
This is throwing the site into quirks mode in IE. Move that script somewhere more appropriate (just before the closing tag of the body is the best place) and your problem will go away.