Re: Menu (works in IE) doesn't pop up in Netscape 7.0
2005/08/01 08:48
Viewed 5603 times
Replies: 1/1

I'm testing the Menu for purchase. It initiates fine in Netscape, but doesn't actually pop up (which renders it pretty useless, since the links are hidden.)

this page works in IE but not netscape:
http://www.elzweig.com/pages.php

That's because there is a problem with your code.  The submenu's <ul> element must be nested in the parent menu item <li>, like this:

<ul id="menu">
<li>About Elzweig
<ul>
... submenu items here ...
</ul>
</li>
...
</ul>

Your code contains the submenu <ul> right after closing the parent item <li>, which is wrong.

Hope this helps.

Google