Tagged: Footer background image
HI – I uploaded a background image for my footer, which works great on desktop but covers text on mobile. Is there some CSS where I can hide the Footer Background image on mobile devices?
Thanks so much!
Anna
Hey annameis,
Add this to quick css:
@media only screen and (max-width: 767px){
.footer_color{
background-image:none!important;
}}
Best regards,
Jordan Shannon
Thank you – that worked!