Hi @juliavbh ,
In order to change the background color of each post and each header, you would have to identify the particular id of the posts.
For that you can either use the inspect function on your website then click on the far upper left symbol (the one with an arrow and a dotted square) -> click on the element you would like to change the color for, and explore the code to identify its id.
Another method would be to go to Dashboard -> Posts -> hover on the posts you would like to modify and in the bottom left corner an URL will appear, something like – https://[…%5D/wp-admin/post.php?post=51&action=edit, here “post_51” is the id.
After finding the id of the specific post you will need to go to the Customizer -> Additional CSS and add this code there:
.postid-51 .blog-post-wrapper {
background-color: [desired_color] !important;
}
To change the background of the post, and this code:
.postid-51 .entry-title { color: [desired_color];}
to change the color of the title.
Remember to replace “postid-51” with the actual id of your post.
I hope this helps!
Kind regards,
Mara
-
This reply was modified 4 months ago by mara3.