Site logo

Archived topic

Moving the mobile logo to the right

3 replies · Started by Jennifer on November 21, 2019

Viewing posts 1–4 of 4

My main navigation is with the navigation on the right, but on mobile, I'd like it on the left. I've tried a few of the suggestions I found in this forum, but none of them have worked so far.

Hi there,

try this CSS:

@media (max-width: 769px) {
    .main-navigation:not(.slideout-navigation) .inside-navigation {
        flex-direction: row-reverse;
    }
    #site-navigation .navigation-branding {
        margin-left: auto;
        margin-right: 0;
    }
}

That worked! Thank you so much!!

You're welcome

This archived topic is closed to new replies.