R
Robb B
I have a horizontal navigation menubar with five links. It is built with CSS
inline style. Below it is a horizontal submenu bar. Each submenu bar
initially is visibility: hidden, and when the user moves the mouse over the
main level menu item, I wrote javascript telling the browser to display the
appropriate submenu. The menu works great in IE but the submenus never become
visible in Netscape. I like this menu style because it is similar to the
two-tiered flash menus, but it doesn't use flash, allowing for much quicker
page loading. Any suggestions?
The site is at www.cbcwichita.org/testpage.shtml.
Here's a sample of the code for one menu item:
function showabout()
{
librarynav.style.visibility='hidden';
aboutusnav.style.visibility='visible';
radionav.style.visibility='hidden';
contactnav.style.visibility='hidden';
}
Thanks,
Robb
inline style. Below it is a horizontal submenu bar. Each submenu bar
initially is visibility: hidden, and when the user moves the mouse over the
main level menu item, I wrote javascript telling the browser to display the
appropriate submenu. The menu works great in IE but the submenus never become
visible in Netscape. I like this menu style because it is similar to the
two-tiered flash menus, but it doesn't use flash, allowing for much quicker
page loading. Any suggestions?
The site is at www.cbcwichita.org/testpage.shtml.
Here's a sample of the code for one menu item:
function showabout()
{
librarynav.style.visibility='hidden';
aboutusnav.style.visibility='visible';
radionav.style.visibility='hidden';
contactnav.style.visibility='hidden';
}
Thanks,
Robb