• Hello!

    I’m not an expert in WP, so maybe here comes a silly question…

    Is there a way to keep all the items in menu opened, including sub items, so you don’t need to hover the parent item in order to see the sub ones?

    I have a vertical menu, so it’s very confusing to have the menu expanding and contracting all the time just by hovering.

    Thank you very much for any help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You should always post a link to your site so someone can inspect it. You should be able to do this with some CSS that changes the display of all of the menu items to block, but as I mentioned, it would be easier to offer more specific advice if we could see the site.

    Thread Starter kaiobviate

    (@kaiobviate)

    Thanks for your answer! Here is the website https://rodrigoaffonso.com

    OK, you should a CSS plugin like Custom CSS Manager instead of editing the theme’s files directly. Or you can create a child theme, but that’s kind of a pain that you don’t need to go through if you’re just making a CSS change.

    Adding this rule should expand all of your sub-menu items:

    #main_menu ul {
       display: block !important;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Make menu remain opened without hovering’ is closed to new replies.