Okay
  Public Ticket #2395069
REMOVE SECONDARY NAVIGATION MOBILE
Closed

Comments

  • jtnorth started the conversation

    Hi,

    I'm trying to remove the secondary navigation menu from mobile. I'd just like to see the logo in the top menu bar and nothing else. Is that possible?


    Thanks!

  •  8,990
    Tahir replied

    Hey ,

    Thanks for using Salient .You can hide the Mobile using the css below.

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (max-width: 999px) and (min-width: 1px) {
        #top #mobile-cart-link, #top .span_9 > .slide-out-widget-area-toggle, #top .mobile-search {
            display: none !important;
        }
    }

    Thanks


    ThemeNectar Support Team