Okay
  Public Ticket #147448
Secondary Navigation
Closed

Comments

  • Ryan started the conversation
    Hi- Is there any way to change the color of the secondary navigation at the top of each page? Also, is there any way I can hide it on desktop and have it only display on the mobile version of the site? Thanks very much!
  •  997
    ThemeNectar replied

    Hey Ryan!

    Yes, just select "custom" for the header color scheme in your header options tab of the theme options panel. As for hiding it on desktop only - add this into the Custom CSS box located in your Salinet Options panel:

    #header-secondary-outer {
      display: none!important;
    }
    html .admin-bar #header-outer[data-using-secondary="1"], html .logged-in.buddypress #header-outer[data-using-secondary="1"] {
      top: 28px;
    }
    
    html #header-outer[data-using-secondary="1"] {
       top: 0px;
    }
    
    @media only screen and (max-width : 690px) { 
        body #header-secondary-outer {
          display: block!important;
       }
    }

    Cheers!