Archived topic
Background CSS Mobile
2 replies · Started by William on August 18, 2017
Hi Guys,
I'm a bit new to all this and I dont know what CSS I would use to fix this.
If you take a look at my site https://technicalrescueequipment.com
When you shrink the page to check for mobile compatibility or even view it on a mobile itself, When the background image is shrunk down to a certain size the background changes to white. If you guys have any idea on the CSS to fix this I will love you forever! :D
thanks
Will
Any help? D:
Hi there,
You have this CSS added which removes the background image and so the body background color is shown:
@media (max-width: 768px)
body {
background-image: none;
}
}