vote up 0 vote down star

div id="outer" style="width:100%; text-align:center"

div style="position:absolute; top:197px; text-align: center; width:858px; margin:auto; left: 0; right:0"

I am using these 2 div tags to center a menu. Works beautifully except in IE 6.

I looked through the other questions, tried several things but nothing worked.

I would appreciate any suggestions,

flag

3 Answers

vote up 0 vote down

First off...make sure your page has the proper DOCTYPE definition. Otherwise IE6 will go into quarks mode and make it near impossible to get your layout the way you want it.

HTML doctype declaration

Second of all...why the absolute positioning? You could just as easily have a single div like this:

<div style="width: 858px; margin-top: 197px; margin-left: auto; margin-right: auto;" />

Which should center the div exactly the way you want it (as long as I got everything right off the top of my head).

link|flag
I really needed to use absolute due to circumstances and current condition of the website. Thanks for the help. – Deborah Jul 26 at 20:59
vote up 0 vote down

If you must have the absolute positioning, I seem to recall that you can do some tricks with margin in IE6.

<div id="outer" style="width:100%; text-align:center">
   <div style="position:absolute; top:197px; text-align:center; width:858px; left: 50%;border:solid 1px red;margin-left:-429px;">
      My Menu
   </div>
</div>
link|flag
Joel - Thank you! That worked! I am very grateful for the help. – Deborah Jul 26 at 20:58
vote up 0 vote down

Try adding position:relative; to your outer div. And, like Justin suggests, make sure you're using a DOCTYPE.

Without an example of what should happen and what is happening it's hard to give a definitive answer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.