Hello, I have CSS that hides the hero images on my website when the pges are viewed on a small screen:
@media(max-width:544px){
.fl-row-bg-overlay {
display: none;
}
}
But I would like to have the hero image on the home page display on small screens. Can you help me do that?
Thanks.