Archived topic
CSS for changing only the backgroudn color on single post.
3 replies · Started by Jinhyung on January 12, 2019
Dear GP support team,
My name Jinhyung Lee, and I would like to know the CSS code to change only the background color on single post.
As you can see the post on my website, there is a light grey background under the content. I want to make all the background white color without any containers.
Please let me know how to do this.
Thank you.
Best,
Jinhyung Lee
Hi there,
we can target the single post using body classes like so:
body.single-post {
background-color: #fff;
}
Thank you!
You're welcome