• Closed
  • Shayne Taylor
    Spectator
    03.12.2015 at 05:07 #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
    03.12.2015 at 08:01 #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
    03.12.2015 at 12:13 #22714
    Denzel Chia
    Moderator
    Posts: 2656
    04.12.2015 at 07:51 #22814

    Hi,

    Please use the following in Theme Options -> Custom CSS

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

    Thanks!