Archived topic
Change the background colour of one particular page
3 replies · Started by Sebastián on March 5, 2019
Im pretty sure I've asked this before (how can I do to search all my open topics in the past?!)
I want to change the background colour of a particular page (Example: /blog).
What code do I need?
Thanks!
Hi there,
you can view your support topics by clicking on the Forum Profile button at the top of the page ( beside the search field).
This CSS would change the blog background color:
body.blog {
background-color: #dddddd;
}
body.page-id-XX would allow you to target a post by its ID. For posts it would be body.postid-xx
Thanks David!
You're welcome