• Closed
  • Shayne Taylor
    Spectator
    December 3, 2015 at 5:07 am #22690

    I am using a mobile menu plugin and need to disable the navigation bar from showing up in mobile view. Is there a custom CSS I can use?

    I used this: #wrapper .dd-container .dd-selected-text {
    display: none;
    }

    But that only took away the text. I need the back bar gone too.

    Thanks,

    Shayne

    Denzel Chia
    Moderator
    Posts: 2656
    December 3, 2015 at 8:01 am #22697

    Hi,

    In Evolve Theme, the mobile navigation is only a small icon, not a bar.

    Can you please provide a screenshot, with annotation?
    Please point to me the element that you want to hide.

    Thanks!
    Denzel

    Shayne Taylor
    Spectator
    Posts: 6
    December 3, 2015 at 12:13 pm #22714
    Denzel Chia
    Moderator
    Posts: 2656
    December 4, 2015 at 7:51 am #22814

    Hi,

    Please use the following in Theme Options -> Custom CSS

    @media screen and (max-width:768px){
    .container-menu{
    display:none !important;
    }
    }

    Thanks!