XF 2.2 remove background image on mobiles

aussie

Member
my background image works fine on desktops but not so good on mobiles.

this code does not remove the background image on mobiles, any ideas please?

Code:
@media (max-width:650px) {
    body {
        background-image: none !important;
    }
}

Code:
@media (max-width:650px) {
    html {
        background-image: none !important;
    }
}
 
Last edited:
Top Bottom