• Resolved alex1305

    (@alex1305)


    Big thanks for awesome theme! Cant make dropdown menu open on hover. Tryed all soluttions but no luck.

Viewing 1 replies (of 1 total)
  • Theme Author Afterimage Designs

    (@afterimagedesigns)

    To Make the dropdown show on mouse over you can use this codes

    CSS Code
    #masthead .navbar-nav > li:hover > .dropdown-menu {
    display: block;
    top: 30px;
    }
    #masthead .navbar-nav li > .dropdown-menu li:hover .dropdown-menu {
    left: 190px;
    top: 0;
    width: 200px !important;
    display: block;
    }

    JQuery Code
    jQuery(function($){
    $(‘.navbar-collapse .dropdown-toggle’).removeAttr(‘data-toggle’);
    });

Viewing 1 replies (of 1 total)
  • The topic ‘Menu dropdown show when hover’ is closed to new replies.