Blog post background/fb comments background

Hi I’m looking for the CSS class for the backgrounds of the blogs alone (separately to the background image selection in options.)

I would like to change background of my blogs only, and I would also like to change the background of the facebook comments section to white aswell so you can see the posts without the background showing through, right now the fb comments section is transparent and it clashes with the background.

If you could help that would be great, thanks.

Hi Jgollin,

Thanks for reaching out.

Background image is rendered through the backstretch library and it’s a javascript, you could only change it by hiding the existing one and apply new one. Please add this CSS to Theme Options > CSS with your preferred background image URL.

body.blog .backstretch{
display: none !important;
}
body.blog {
background: url(http://example.com/background.jpg);
background-size: cover;
}

Then for facebook background color, please check this as well.

.blog .tco-comments-area {
background: #fff !important;
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.