Site logo

Archived topic

Disable background for mobile devices

1 reply · Started by Patrik on March 5, 2020

Viewing posts 1–2 of 2

Hi,
Currently i have a background on my webiste.
Is it possible to disable that for a static color on mobile devices?
Is it also possible to edit text color for mobile devices?

Many thanks,
Patrik

Hi there,

so try this CSS - that removes the image from the body background and changes the text color:

@media (max-width: 768px) {
    
    body {
        /* Remove image from body background */
        background-image: unset;
        /* Change body text color */
        color: ff0000;
    }

}
This archived topic is closed to new replies.