[Resolved] Disable background for mobile devices

Home Forums Support [Resolved] Disable background for mobile devices

Home Forums Support Disable background for mobile devices

  • This topic has 1 reply, 2 voices, and was last updated 4 years ago by David.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1186327
    Patrik

    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

    #1186402
    David
    Staff
    Customer Support

    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;
        }
    
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.