Hi, I"m trying to make a mobile adjustment on the section with the dog and kitten background. named #quote-section. I want to make it so that on screens smaller than 420px wide, that the background is a solid color instead of the photo since it crops poorly.
Site: https://beardnavasota.com/
I added this in the CSS panel:
@media (max-width: 420px) {
#quote-section {
background-image: none !important;
background-color: blue !important;
}
}
What am I doing wrong? Thanks. 