Felipe
Felipe

Reputation: 35

Error with submenu

I have a site http://www.labanda.cl/ and I have a strange error with the submenu or subsections like "servicios".

When I move the cursor on this the rest of subsections this dissapear.

How can fix this?

Upvotes: 2

Views: 93

Answers (2)

Joe
Joe

Reputation: 82654

You have a css class:

#nav ul ul {
    position: a
    bsolute;
    display: none;
    width: 14em;
    top: 2.5em;
    ...
}

delete top: 2.5em;

Upvotes: 2

Joe
Joe

Reputation: 15812

Quite a simple and common mistake - you've applied the CSS "visible" style (for when the menu is visible) to the <a> tag. When you hover the <a> tag, it shows the submenu, then when you go to click a submenu item, you're not hover the <a> any more, so it hides it again.

If you apply the hover selectors the the <li> containing the <a> tag, it should work.

Upvotes: 0

Related Questions