BuddyBoss Home – Web Support Forums Themes BuddyBoss theme mobile menu disappeared with update

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #57687
    @optimystic

    Hello I recently updated my dev site to 4.2.6 from 4.2.4 and the mobile menu (our main navigation menu to the right) is not showing.

    http://devwork.thinkwithyourheart.com

    Please advise.

    Answers

    #57726
    @vapvarun

    Hi @optimystic, inside your custom css , you have a css which is creating issue
    Please include a media parameter with it

    
    .main-navigation ul.nav-menu {
        width: 700px;
        margin: 0 auto;
    }
    

    You can modify it like following to fix the issue

    
    @media screen and (min-width: 721px){
    .main-navigation ul.nav-menu {
        width: 700px;
        margin: 0 auto;
    }
    }
    

    Regards
    Varun Dubey

    #57855
    @optimystic

    thanks!

    #58080
    @vapvarun

    Hi @optimystic, I will close this topic
    Please create a new topic for any further queries.

    Regards
    Varun Dubey

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘mobile menu disappeared with update’ is closed to new replies.