Single post background image color change

Posted in: Newspaper
Post count: 31

Hi! Is it possible to change the background color only on single post? Im thinking of having it white where the post content is and a grey on outside the post. Something like this https://imgur.com/a/OjHsJUF . At the moment on single post I am using a theme made from cloud templates. I guess the single post has to be boxed in order to do that and some css for background after.

Post count: 35449

Hi,

Unfortunately to set the background color on specific/one post, this is possible only with custom css.
In order to do that you need to get the post id, just go in post and hover the title post https://www.screencast.com/t/5Cf6BVDe
https://www.screencast.com/t/OganU3cnjGb

the custom css is :
.postid-8197 .post{
background-color: lightgray;
}
.postid-8197 .tdc-row{
background-color: white;
}

You need to paste the css in Newspaper>Theme panel>Custom code>Custom css
Hope this will help you.

Thank you for your understanding.

Post count: 31

Hi, is it possible to be change the color to all posts and not on a particular one?

Post count: 35449

Hi,

If you want for all website, https://forum.tagdiv.com/wp-content/uploads/2017/05/backgorund-color.png
https://forum.tagdiv.com/wp-content/uploads/2017/05/backgorund-color.png

You can read more about this here: https://forum.tagdiv.com/background-introduction/

If you want the background color only for post please try below css, also you can change the colors :
.post{
background-color: lightgray;
}
.tdc-row{
background-color: white;
}

Thank you for your understanding.

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.