Archived topic
Changing background color only for posts
3 replies · Started by Dmitrii on July 31, 2022
Hello!
I'd like to change the background color for posts, but not any other page (homepage, category, auxiliary pages, etc. should all remain white).
Right now I'm using the customizer because the CSS I was using did not translate very well (only certain parts of the post background would change color).
The background-color I want is: "#fff7f4"
Hi Dmitrii,
Here’s a CSS you may try to apply that background color to all posts:
body.single.single-post, body.single.single-post main#main .inside-article {
background-color: #fff7f4;
}
That worked perfectly, thank you as always Fernando!
You’re welcome Dmitrii!