Hi @stavrosste,
Yes, you can change the background color of the page by adding code to the Additional CSS section. Something like:
body {
background-color: #e2e2e2;
}
will change it properly.
Hi, does that mean that this will not work in Hestia Lite / child theme Orfeo? My background color stays white no matter what I do 🙁
AC
(@purplecodes)
Themeisle Support
Hi @zelenecgirl,
You provide us a link to your site so we can doublecheck.
Hi, my site is http://www.timuvhrad.cz
I managed to set a different background color to my blog-post page (Novinky) by adding this css code:
.hestia-blogs {
background-color: #093a00;
}
However, I would like to be able to change the background color on all the subpages, e.g. “Kontakt” and “Podminky pronajmu”, as well as any other pages I add and I cannot find the way to do it.
OK, guys, it only took me like forever, a lot of searching, experimenting, “inspect element”-ing, but I finally found a way to do it.
Considering I’m just a bold (or foolish) amateur dabbing into WP, HTML and now newly css… I’m kind of proud of myself.
The thing that did it for my pages was:
.blog-post {
background-color: #093001;
}
(the things that didn’t do it, on the other hand, were “body”, “site”, “page body” and other randomly tested words) 🙂