• Resolved ltcutto

    (@ltcutto)


    Hi there!
    It seems i have some problems with menu, menu items only respond to a click, but i need that menu items react to mouse cursor.
    How can i do this? thx a lot.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Pavan Solapure

    (@pavans)

    You can add following css to your styles.css

    @media (min-width: 768px) {
    /* Required to make menu appear on mouse hover. */
    ul.nav li.dropdown:hover > ul.dropdown-menu{
        display: block;
    }
    
    ul.nav li.dropdown > ul.dropdown-menu li.dropdown-submenu:hover > ul.dropdown-menu {
        display: block;
    }
    }

    I will see how I can make this configurable in coming version

    Thread Starter ltcutto

    (@ltcutto)

    Ohhh…Great Thank’s to you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Drop down main menu’ is closed to new replies.