Reply To: How can I hide the secondary menu to those not logged in?

Home Forums Support How can I hide the secondary menu to those not logged in? Reply To: How can I hide the secondary menu to those not logged in?

Home Forums Support How can I hide the secondary menu to those not logged in? Reply To: How can I hide the secondary menu to those not logged in?

#188374
Tom
Lead Developer
Lead Developer

Give this a shot:

body .secondary-navigation {
    display: none;
}

body.logged-in .secondary-navigation {
    display: block;
}
  • This reply was modified 7 years, 5 months ago by Tom.