Hello.
I want to remove a rows background image on any screen size smaller than 1024px
For now i tried to write this in the additional css section:
@media only screen and (max-width: 1023px) {
.bg-change {
background-image:none !important;
background-color:#222222 !important;
}
}
and then putting “bg-change” into the “Row ID”, but that does not seem to do the trick. Any other way i could do this, maybe a smarter solution/built in function i am missing?
Thank you.