Archived topic
Navigation center logo left
3 replies · Started by Matt on September 29, 2021
I don't see any options in layout -> header to center the navigation. I see align the header left but how do I center navigation.
I'm trying to get logo and primary navigation like this https://explodingtopics.com/
Hi there,
that will require a little CSS.
Can you share a link to the site you're working on so i can take a look at the requirements.
activedirectorypro.com
Hi Matt,
1. Go to customizer > layout > header, set the Inner Header Width to full.
2. Add this CSS:
.inside-header nav#site-navigation {
position: absolute;
left: 50%;
transform: translatex(-50%);
}
.inside-header {
height: 80px;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this works :)