Site logo

Archived topic

centering logo in menu items only on sticky menu

1 reply · Started by Josh on October 11, 2021

Viewing posts 1–2 of 2

Hi Josh,

You can try this CSS:

nav#sticky-navigation .navigation-branding {
    position: absolute;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
}

nav#sticky-navigation > * {
    position: relative;
}

But they may overlap with your menu items if there are too many regardless if you've aligned it with this:

nav#sticky-navigation ul.sf-menu {
    margin-left: auto;
    width: fit-content;
}
This archived topic is closed to new replies.