[Resolved] background color of the theme

Home Forums Support [Resolved] background color of the theme

Home Forums Support background color of the theme

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #286902
    rudi

    Hi Tom,

    is it possible to change the background-color of the theme only for one special site?
    Thank you for your help.

    Rudi

    #286931
    Leo
    Staff
    Customer Support

    Hi Rudi,

    You can change the background color in Customizer > Colors > Body > Background Color.

    Let me know if this answers your question.

    #287022
    rudi

    Hi Leo,
    may be, it was not clear, what I wrote.

    I mean – for one page only – I want to be able to change the theme-background-color.
    Is there a way to do it with an css-comand?

    Thank you for your help.

    Rudi

    #287051
    Tom
    Lead Developer
    Lead Developer

    You can target the page using the page ID, or you can use my Simple CSS plugin (https://wordpress.org/plugins/simple-css/) and use the meta box for CSS on that specific page.

    By ID (assuming ID is 10):

    body.page-id-10 {
        background-color: #FFF;
    }

    Using Simple CSS meta box:

    body {
        background-color: #FFF;
    }
    #287108
    rudi

    Hi Tom,

    That seems to be a good way.

    Thank you

    Rudi

    #287162
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.