Hm, wonder if it's because you have "position:absolute;" for that bar. I don't know a whole lot about how to fix things for IE6, but I do see your problem.
You have to make a new css file in your public_html directory where your site is located & it should be named as ie.css . Try this, it can help you.
Really? I never knew about such an option Please PM me your fix, if it fixes the problem I will paypal you $10 right away
Its showing up in FF2 as not having a doctype. Putting it into quirks mode. IE6 (at the least) doesn't handle position: absolute; in a logic manner without a doctype. Try putting a doctype on it, odds are it will cause IE to reveal more problems.
^^yes. First step is to slap in a doctype. To solve the centering problem. You need to wrap all of your code in a container div. so we have: <body> <div id="container"> ...all you page content here... </div> <!--close container--> ...google tracking code here... </body> Code (markup): make this change to body in your css body { text-align: center; padding: 0; font-size: 12px; background-color: #000000; font-family:verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; } Code (markup): and add this after body in your css #container { margin: 0 auto; text-align: left; } Code (markup): Now it should be centered in IE (and all browsers).. Will tackle the other issues in a bit. Gotta study the code some more. EDIT: Oh wow. You've got ALOT of problems once you apply a doctype. lol. And you really should have one. How did you reach this far without testing in IE?
sorry, i fixed it almost but only problem is in IE high resulations. i have only monitor support 1024x786.