Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Remove background from content box just for mobile devices Reply To: Remove background from content box just for mobile devices

#257476
webinuse
Participant

Anything can be added or removed through the media querie, so all you have to do is to determine at which screen size you want to remove the background and then:

@media only screen and (max-width: 768px) {
.someClass {
background: none;}}