Site logo

[Support request] centering logo in menu items only on sticky menu

Home Forums Support [Support request] centering logo in menu items only on sticky menu

Home Forums Support centering logo in menu items only on sticky menu

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1960518
    Josh

    Is there a way to accomplish this?

    I did see this article:
    https://docs.generatepress.com/article/centering-logo-navigation/

    but wanted it to only center the logo in the navigation on the sticky menu.

    #1960561
    Elvin
    Staff
    Customer Support

    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;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.