XF 2.2 remove background image on mobiles

aussie

Member
Licensed customer
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:
Hello, try p-body instead of body
thank you @nicodak, I tried it and still not working. however, instead of trying to make the code fit the image I have taken to photoshop and made the image fit the code. as they say; "there is more than one way to skin a cat". 👍

very happy with the outcome...cheers! :)
 
Back
Top Bottom