Site logo

Archived topic

Make element center the mobile header

3 replies · Started by Anders Nielsen on July 6, 2022

Viewing posts 1–4 of 4

How can I an element center the mobile header, it's constanly floating to the right.

Link in private section

Hi Anders,

Can you try this CSS?:

@media (max-width: 768px) {
    #mobile-header .menu-bar-items {
        display: none;
    }

    #mobile-header .site-logo.mobile-header-logo {
        margin-right: unset;
    }
}

This code removes the margin-right of the logo on mobile, and sets the menu bar items to display:none.

Kindly let us know how it goes.

Thanks, it works

You’re welcome Anders!

This archived topic is closed to new replies.