Site logo

Archived topic

mobile menu padding

5 replies · Started by Tim on December 22, 2022

Viewing posts 1–6 of 6

I'd like to have the mobile header padding to mimic what it does on the sticky menu. Right now there is some padding in the header that I'd like to remove...you can see that if you scroll down the sticky menu doesn't have this. Thoughts?

Hi Tim,

Your logo is left-aligned on the sticky nav whereas your logo on top is centered. To clarify, do you want them the same as well? If so, do you want them centered or left-aligned?

Let us know what you prefer.

Yes I would want them both centered.

I see. Can you try adding this CSS through Appearance > Customize > Additional CSS:

@media (max-width: 768px) {
    nav.is_stuck .inside-navigation .navigation-branding {
        margin-left: auto !important;
    }

    .site-header .inside-header {
        padding-left: 0;
        padding-right: 0;
    }
}

Beautiful. Thank you.

You're welcome, Tim!

This archived topic is closed to new replies.