Hi, I’m trying to modify/override the sizes of the background image when viewing on mobile, or at certain breakpoints. This is the section background (when the advanced tab is selected) that gives you a lower layer and upper layer. I want to target the lower layer with @media-screen but whatever I try seems to be overridden by the settings in the sidebar.
For instance I have the background size set to calc(100% / 1.7), when viewed on mobile I’d like to alter that so I thought something like this would work (but it doesn’t):
@media screen and (min-width: 980px) {
.x-bg {
background-size: 30%!important;
}
}