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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.