I've got the suckerfish menu working great in opera7, moz1.5, ie6, but nn7 is giving me a hard time.
I don't know why but instead of the dropdown list menus hovering over the content, nn7 is treating the floating drop down menu as if it is within the same content. And what happens is nn7 opens the menu and forces all the content down.
Much like you would expect from the following code:
Has anyone ecountered NN doing this, and if so did you find a way around it?
To make things clear, the above code does exactly what it should, but I'm using it as an example of what NN7 is doing with my css suckerfish menu. Of which it is in a 20px height div. So the whole things get's pushed down repeatedly...
I don't know why but instead of the dropdown list menus hovering over the content, nn7 is treating the floating drop down menu as if it is within the same content. And what happens is nn7 opens the menu and forces all the content down.
Much like you would expect from the following code:
Code:
<body> <a href="javascript:void(0);" onmouseover="document.getElementById('example').style.display='block';" onmouseout="document.getElementById('example').style.display='none';">view example</a> <div id="example" style="display:none;"> some hidden Hidden stuff </div> <br/>cotent to push down..very bad if you are trying to write wcag conforming websites..:o </body> </html>
To make things clear, the above code does exactly what it should, but I'm using it as an example of what NN7 is doing with my css suckerfish menu. Of which it is in a 20px height div. So the whole things get's pushed down repeatedly...
Comment