Archived topic
Secondary nav label display
3 replies · Started by Tamara on May 5, 2018
Hallo,
I've created a 'secondary nav' on the left sidebar showing items from 'Categories'. I'd like the secondary nav to display a Label/Title (just like Widgets do). I've seen the mobile version shows only the secondary nav Label. I cannot find the way to show the label when navigating from a desktop browser.
Appreciate any help I can get
Tamara
You can add this CSS to display the label on desktop, it also removes the hamburger icon:
@media (min-width: 1024px) {
.menu-toggle.secondary-menu-toggle {
display: block;
}
.menu-toggle.secondary-menu-toggle:before {
display: none;
}
}
Documentation: http://docs.generatepress.com/
Adding CSS: http://docs.generatepress.com/article/adding-css/
Ongoing Development: https://generatepress.com/ongoing-development
Fantastic!
Thank You so much!
Tamara
Glad i could help!