Site logo

Archived topic

Remove radius and shadow on off-canvas menu

3 replies · Started by Salty Communication on November 25, 2022

Viewing posts 1–4 of 4

Hi!

I have been trying to remove the radius and shadow on the off-canvas menu used on mobile/tablet without success...
Could you please give me a helping hand?

Thanks!

-J

Hi there,

you have this CSS:


.main-navigation .sub-menu {
    border-radius: 10px;
    box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
}

Change that to:


.site-header .main-navigation .sub-menu {
    border-radius: 10px;
    box-shadow: 0 5px 10px 5px rgba(0,0,0,0.2);
}

Perfect. Thanks David!

You're welcome

This archived topic is closed to new replies.