Thanks Paul ... great to see you again.
I tried what you showed and man what a mess!
It was making the drop downs sit in blocks of three next to each other and caused the menu to drop down below the content (the menu is floated right)
But the good news is I tinkered a bit and got it. Here's what I ended up with:
Code:
ul#navigation li {
width: 250px;
border: 1px solid #DED9DA;
background-color: #F9F9F9;
padding: 5px 10px;
margin-bottom: 3px;
}
ul#navigation li:hover {
position: relative;
}
ul#navigation li:hover ul, ul#navigation li.sfhover ul {
position: absolute;
left: -165px;
bottom: 0;
}
* html ul#navigation li {
position: relative;
z-index: 999;
}
ul.inner {
list-style: none;
z-index: 100;
position: absolute;
left: -2999em;
}
Actually works wonderful ....... now on to IE 7 to see if it works.
On that note ... I haven't been keeping up on the IE 7 problems (haven't been doing a lot of layout code) .... has it been confirmed the * html hack doesn't effect IE 7?
thanks . as always if you don't hit the problem on the head you make me think of a way to do it!
Bookmarks