Archived topic
Blog Secondary Navigation
1 reply · Started by Espresso on September 8, 2017
Hi Tom,
I have built my website with GP. I have created the blog section. However, when I go into the blog section, I would like to add a secondary navigation (only for the blog). This way, people can navigate the website with the primary navigation, and when they access the blog, they can still see the primary navigation and see the secondary navigation related to the blog (categories and blog posts).
Is that possible?
Best,
Dan
Hi Dan,
Try this CSS to hide secondary navigation on all pages except blog and archive:
body:not(.blog):not(.archive) .secondary-navigation {
display: none;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
If something doesn't work can you link me to a page that's not working? Thanks!