Archived topic
background color of the theme
5 replies · Started by rudi on March 4, 2017
Hi Tom,
is it possible to change the background-color of the theme only for one special site?
Thank you for your help.
Rudi
Hi Rudi,
You can change the background color in Customizer > Colors > Body > Background Color.
Let me know if this answers your question.
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
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;
}
Hi Tom,
That seems to be a good way.
Thank you
Rudi
You're welcome :)