Archived topic
Post Background Color
9 replies · Started by Mike on June 10, 2019
Hello,
Any idea how to make the post content color white? I don't want to change for the whole site. I installed the Simple CSS plugin and entered
body {
background-color: #FFFFF;
}
But not working
Thank you
Hi there,
you need to remove the background image and replace the colors of the body and the two containers like so:
.single-post .inside-article, .single-post .comments-area {
background-image: none;
background-color: #ffffff;
}
Thanks that got rid of the background as desired. But is there any way to keep the background on the side? I am using a contained format.
So I would like the contained space to be white and the background to be present outside of the contained space.
I hope i explained myself clearly
Thank you!
Of course, i edited the code above to remove this: body.single-post, which was targeting the body of the post :)
thank you as always. much appreciated.
you're welcome
What is the CSS to change the background colour of posts on the all-posts page? The code above works for single post page, but in the long listing of them all, I still have blue backgrounds.
[I know this is a basic question. I use static pages usually, not blogs.]
It should be:
.blog .inside-article, .archive .inside-article {
background-color: #ffffff;
}
Beautiful! Thank you again.
No problem :)