Archived topic
Site Title with Split Navigation - Centering
3 replies · Started by Shery on July 6, 2019
Hi. I'm using a split navigation with the Site Title.
Behind the Site Title is the "Menu Item Separator". How can I center the Site Title with the Menu Item Separator? Right now the Site Title looks off-center in relation to the menu items but I'd rather the Site Title be an equal distance from the left menu items and the right menu items.
You previously helped me here: https://generatepress.com/forums/topic/sticky-menu-split-navigation-not-using-a-logo-site-title-disappears-on-scroll/ (thank you again!)
Hi there,
maybe a better solution would be to adjust the min width of the left hand menu items so as to balance out the spacing. Try this CSS:
.nav-aligned-right .main-navigation ul li:nth-child(-n + 3) {
min-width: 118px;
text-align: center;
}
Calculated the min width by taking the average width of the right hand elements.
Thank you David. I tried it out and I think this will work. Thank you for helping me!
Glad to be of help