I've finished my new CSS menu, and everything works great in I.E. only in firefox the menu's when poping out on hover, does not disapear when you move away.
URL :
I take it
makes them go off the screen to start with and ...
is making them appear by the left:0px; , why does firefox not apply the first css again once you are no longer hovering?
And in Opera all you get when you hover is the blank iFrame?
does this select list / suckerfish menu only work in I.E ?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.
URL :
I take it
Code:
#nav li ul { /* second-level lists */
position: absolute;
left: -1000px;
}
Code:
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li li li li:hover ul, #nav li.iehover ul, #nav li li.iehover ul, #nav li li li.iehover ul, #nav li li li li.iehover ul{ /* lists nested under hovered list items */
left: 0px;
color: #FFFFFF;
}
And in Opera all you get when you hover is the blank iFrame?
does this select list / suckerfish menu only work in I.E ?
"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you.