Try this:
body:not(.overlay-header) .primary-menu ul {
background-color: none;
}
body:not(.overlay-header) .primary-menu > li > ul::after {
border-bottom-color: none;
}
.primary-menu ul::after {
border-bottom-color: none;
}
If you’d like to customize the color instead, just swap out none for your preferred color:
body:not(.overlay-header) .primary-menu ul {
background-color: #d311b4;
}
body:not(.overlay-header) .primary-menu > li > ul::after {
border-bottom-color: #d311b4;
}
.primary-menu ul::after {
border-bottom-color: #d311b4;
}
@macmanx – Thank you for this code. In fact, none didn’t seem to work, – it threw an error, expecting a color, so I changed it to transparent
Very grateful for the help in identifying the selectors etc.