Archived topic
Remove background on mobile
5 replies · Started by Mathieu on April 7, 2021
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.
Try the edited CSS:
https://generatepress.com/forums/topic/remove-background-on-mobile/#post-1725443
Thank you Leo.
Now it works!
No problem :)