submenu doesn't close

G

Guest

can you please take a look at website www.nooksack-tribe.org, and tell me why
my sub-menu is not closing. I can go to a different web page in my site, and
then click a home button, and the submenu will be open.

I can mouseover on the on tribal council and other links within the Main
menu and the sub will disappear, but if I go to another webpage, and then I
click to go back home...the submenu is open. What am I missing? Of course
this submenu was working just perfect, and then it decides it doesn't want to
work. Thanks
 
G

Guest

Molly,

The following tag has a missing "visibility" property for the sub-menu:

<div style="position: absolute; width: 100px; height: 80px; z-index: 1;
left: 52px; top: 23px; " id="councilSubMenu"
onmouseover="FP_changeProp(/*id*/'councilSubMenu',0,'style.visibility','visible')"
onmouseout="FP_changeProp(/*id*/'councilSubMenu',0,'style.visibility','hidden')">

This should read as follows:

<div style="position: absolute; width: 100px; height: 80px; z-index: 1;
left: 52px; top: 23px;visibility: hidden;" id="councilSubMenu"
onmouseover="FP_changeProp(/*id*/'councilSubMenu',0,'style.visibility','visible')"
onmouseout="FP_changeProp(/*id*/'councilSubMenu',0,'style.visibility','hidden')">

This will make sure your sub-menu is not visibile when the page first loads.
I hope this helps.

Mike
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top