I use both an image and a color background on a color section for most of my site, but the images never appear right with the text on mobile. How can I remove images in the color section on mobile only?
Hey tsays,
Thank you for the inquiry.
You can use this css code to disable the background image of the color sections on mobile view:
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top .avia-section {
background-image: none !important;
}
}
Best regards,
Ismael