Site logo

Archived topic

How to put the menu to far right and logo to far left on mobile

3 replies · Started by Rohan Verma on September 9, 2020

Viewing posts 1–4 of 4

Hello, I want to put the menu to far-right and logo to far left on mobile. But I can't as no matter what I do there is still some space: https://prnt.sc/ueexgf

Please guide me to achieve this

Thanks

Hi there,

Edit this CSS you've added:

.inside-navigation {
    background-color: #fff;
    box-shadow: 0 2px 8px 0 rgba(94,94,94,.08);
    padding: 0 30px;
}

To this so it's desktop only:

@media (min-width: 769px) {
    .inside-navigation {
        background-color: #fff;
        box-shadow: 0 2px 8px 0 rgba(94,94,94,.08);
        padding: 0 30px;
    }
}

It worked.

Thanks Leo

No problem :)

This archived topic is closed to new replies.