Site logo

Archived topic

How to remove background-image in mobile

2 replies · Started by Anonymous on June 20, 2016

Viewing posts 1–3 of 3

So, I want to remove body background-image in mobile view. I have tried this: @media (max-width: 960px) {
{
background-image: none !important;
}
}

It does not work.

Ok, I solved it: /* Portrait tablets and small desktops */

@media (min-width: 768px) and (max-width: 991px) {

          body{
        background-image: none;
    }

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

          body{
        background-image: none;
    }

}

/* Portrait phones and smaller */
@media (max-width: 480px) {

          body{
        background-image: none;
    }

}

Glad you got it sorted :)

This archived topic is closed to new replies.