Site logo

Archived topic

Remove border on Off Canvas Mobile Menu

6 replies · Started by Ian on January 26, 2020

Viewing posts 1–7 of 7

How do I remove the yellow border around the mobile menu?

Currently you are using this CSS for the bottom border:

.main-navigation ul {
    border-bottom: 1px solid #ffc43d;
}

You can wrap it in media query like this so it only applies to desktop:

@media (min-width: 769px) {
    .main-navigation ul {
        border-bottom: 1px solid #ffc43d;
    }
}

It did not seem to work. Maybe cache.

It was a cache issue and it did work. Thank you!

No problem :)

This archived topic is closed to new replies.