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.

#1852
Robert Kavgić
Participant

Hi,

I think i know what you want to achieve.

You want to display the normal menu instead of the dropdown one on your resolution?

If so, go to css/ and open up responsive.css.

Go to about line 1412 where the code looks like:

.navbar-nav.pi-nav{
        display: none;
    }

    #dl-menu{
        display: block;
        max-width: 260px;
    }

Change the code to look like the following:

.navbar-nav.pi-nav{
        display: block;
    }

    #dl-menu{
        display: none;
        max-width: 260px;
    }

Now go to line 1831 where it is written:

 .navbar-nav.pi-nav{
        display: none;
    }

    #dl-menu{
        display: block;
        max-width: 800px;
    }

    .collapse.navbar-collapse{
        width: 100%;
        margin-bottom: 20px;
    }

Change that code so it looks like the following one:

.navbar-nav.pi-nav{
        display: block;
    }

    #dl-menu{
        display: none;
        max-width: 800px;
    }

    .collapse.navbar-collapse{
        width: 80%;
        margin-bottom: 20px;
    }

Let me know if this is what you wanted to achieve.

Robert