vote up 0 vote down star
1

The essence of the ie6 bug (dropdown entries must be truncated via overflow hidden to prevent ie from incorrectly expanding instead of acting as overflow:visible) can be seen in it's current (hacky) form in the screenshot below, and at the site http://zd-cms.com

Wrong (ie6):

http://img249.imageshack.us/img249/352/screenshot68.png

Right (FF, IE8, Chrome):

http://img402.imageshack.us/img402/7208/screenshot69.png

The menu entry should show:

  • Contact Us
  • Resellers
  • Support
  • Designer Services

But since I can't get overflow:visible working or otherwise simulate it, parts of the dropdown menus get cut off. Currently the css in the ie6-specific stylesheet is:

#zd-nav {
  padding-left:0;
  margin-left:0;
  background-color:transparent;
}
#zd-nav .zd-sub-nav{
  margin-top:5px;
  **width:73px**;
  **overflow:hidden;**
}

A few solutions to the bug that I've tried: I'm aware of the ie6 overflow:visible bug, (as per here: http://www.positioniseverything.net/explorer/expandingboxbug.html ), which renders overflow:visible null and void. Read through: http://stackoverflow.com/questions/83696/strategy-for-fixing-layout-bugs-in-ie6 and tried a few hacks to try to make it really act as overflow:visible, but nothing worked.

Right now, I've got the dropdown part of the menu set to overflow:hidden as a last ditch solution because I can't get ie6 to let the menu act in an overflow:visible manner.

Pointing out any problems with the nav in ie7 or ie8 would be much appreciated as well.

Suggestions?

flag
Heh, thanks Jonathan, was just looking to edit in code tags. Should have used the preview better. – Tchalvak Oct 27 at 17:37
Man, IE6 pwns me, makes me feel like a N00b. Whee. – Tchalvak Oct 27 at 23:36
Man, still haven't had time to check out the additional solutions. Will before long, though. – Tchalvak Nov 9 at 15:12

5 Answers

vote up 1 vote down check

This worked for me:

#zd-nav .zd-sub-nav li{
    float:left; 
    clear:left; 
    position:relative; 
    z-index:20; /* or some other arbitrary biggish number */
}

The float gives the li the right width, and the position relative and z-index make it show above (ie not constrained by) the ul.

link|flag
Since this was simple, I tried it first, and it solved the problem, so thanks. – Tchalvak Nov 10 at 16:04
glad to help ..................... – wheresrhys Nov 10 at 18:25
Since it is position relative, it will still cause pushdown on the page. But if it fixed the problem, good on ya. – Kevin Peno Nov 11 at 3:49
vote up 0 vote down

Try either:

word-wrap:break-word; /*use this in the #zd-nav .zd-sub-nav class*/

or...

width:100%; /*instead of setting the width to 73px*/

you could do height:100%; also.

It's a hasLayout issue that Microsoft invented. Found the info here: http://zoffix.com/css/ie/haslayout.shtml

Hope this helps...

link|flag
word-wrap:break-word; // No effect. I thought this was a css3 feature anyway? width:100% //changed the layout, but not in any good way, just threw the menu down to a lower line. height:100%; // As with width. If it were really a hasLayout issue, it seems like the "zoom:1" hack should be a clean way to fix it, but... ...the googles, zey do nathink. – Tchalvak Oct 27 at 23:31
Well, I gave it a try! Really, the best thing is to not develop for IE6 at all! 9-year old browser full of bugs, and MS doesn't mind anyone using it. – tahdhaze09 Oct 28 at 13:41
2  
Yep, would that I had that choice. – Tchalvak Oct 28 at 14:07
I have the same dilemma. – tahdhaze09 Oct 28 at 17:40
vote up 1 vote down

Try this out (assuming that you want the drop down [plus sub sub sub] to also be allowed to "float" over any other elements on the page that get in the way):

.zd-nav-active {
    position: relative;
}
.zd-sub-nav {
    position: absolute;
    z-index:10000;
}

Forcing the li containg the sub navigation to position relative will not change position on the page. It does, however, allow you to use position absolute on child elements, while keeping them contained within the parent by default, AND releasing it from the "flow" of the page (thus preventing the push down effect).

link|flag
vote up 0 vote down

This should work

#zd-nav .zd-sub-nav{ 
    margin-top:5px;
    width: auto;
    display: block;
    overflow: visible
    }

An auto width is used to adopt the size of each navigation item without needing to give each one a fixed width.

Hope this helps.

link|flag
vote up 0 vote down

I suggest to use a relative position to the container, with specifying top and left and width

link|flag

Your Answer

Get an OpenID
or

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