I’m trying to remove the lower background image for a specific section on mobile.
This thread from June '18 covers a very similar question. However the provided CSSC is not working for me regardless of if it’s added to the page CSS editor or the section element css editor.
How should I update the following CSS so it removes the background on mobile for just a specific section? When I insert it into the element CSS field doesn’t have an effect and adding $el doesn’t seem to work:
@media (max-width: 480px){
.no-bg-img .x-bg-layer-lower-image {
background-image: none !important;
}
}
