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?
April 21, 2016 at 9:18 am
#188374
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.