submenu doesn't close

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?bW9sbHk=?=

    #1

    submenu doesn't close

    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
    --
    mollybigd
  • =?Utf-8?B?TWlrZQ==?=

    #2
    RE: submenu doesn't close

    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="councilSubM enu"
    onmouseover="FP _changeProp(/*id*/'councilSubMenu ',0,'style.visi bility','visibl e')"
    onmouseout="FP_ changeProp(/*id*/'councilSubMenu ',0,'style.visi bility','hidden ')">

    This should read as follows:

    <div style="position : absolute; width: 100px; height: 80px; z-index: 1;
    left: 52px; top: 23px;visibility : hidden;" id="councilSubM enu"
    onmouseover="FP _changeProp(/*id*/'councilSubMenu ',0,'style.visi bility','visibl e')"
    onmouseout="FP_ changeProp(/*id*/'councilSubMenu ',0,'style.visi bility','hidden ')">

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

    Mike



    "molly" wrote:
    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
    --
    mollybigd

    Comment

    Working...