Okay
  Public Ticket #268573
Secondary Navigation Mobile
Closed

Comments

  • Josephine started the conversation

    Is there a way to remove the secondary navigation from mobile? Since secondary nav does not 'fold-up' like the primary nav does, it becomes a multi-line footprint that I'd rather not show on mobile. 

    Thanks as always!

    Jade

  •  8,839
    Tahir replied

    Hey Jade!

    Sure, Add this into the Custom CSS box located in your Salient Options panel :

    @media only screen and (max-width: 480px) {
        #header-secondary-outer {
            display: none !important;
        }
    }
    
    
    

    Cheers


    ThemeNectar Support Team 

  • Josephine replied

    Tahir! Thanks so much.