Site logo

Archived topic

Change background color only on mobile

2 replies · Started by Gerrit on November 5, 2021

Viewing posts 1–3 of 3

Is it possible to change the background color only on mobile?

I tried this CSS but it did not work:

@media (max-width: 768px)
body {
background-color: #ffffff
!important;
}

Site: family-feed.com

Hi there,

try this CSS:

@media (max-width: 768px) {
    body {
        background-color: #ffffff;
    }
}
This archived topic is closed to new replies.