Site logo

Archived topic

Remove background on mobile

5 replies · Started by Mathieu on April 7, 2021

Viewing posts 1–6 of 6

Hello,

I tried the following code to remove the background on mobile but it doesn’t work.

@media (max-width: 768px) {
    .gb-container.no-mobile-background,
    .gb-container.no-mobile-background:before {
        background-image: none;
    }
}

I only have one background image set for the body, and I would like to disable it for mobile view.

Is there another code I can try?

The website is: mirrorlesscomparison.com

Many thanks!

Mat

Hi Mathieu,

Try this CSS instead :)

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

Thanks Ying, but it doesn't seem to work. I tried to reset the cache as well but no luck.

Thank you Leo.

Now it works!

No problem :)

This archived topic is closed to new replies.