Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#2059
Robert Kavgić
Participant

Hello,

I see the problem with the dropdown menu. Please, modify the recently given CSS to match this one (or just copy and replace the existing one in your responsive.css):

@media (min-width: 768px) and (max-width: 1199px) {
    .navbar-header {
        display: inline-block;
        float: left !important;
    }
    .collapse.navbar-collapse { 
        display: inline-block !important;
        width: auto;
        float: right;
        margin-bottom: 0px;
    }
    .logo {
        margin: 25px auto;
    }
}

The dropdown menu should be now working normally.

Robert