Customizing Page Background Colour
-
Hi,
I am trying to customize the background colour of a specific page in the Sketch theme. But I can’t get this working:
#page-id-934 {
background: #000000;
}Instead only this works:
.page-id-934 {
background: #000000;
}The reason why I want to use #page is, in Sketch, it refers to the area I want to customize. .page refers to another area.
Any help would be appreciated.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Howdie!
Try this:
.page-id-934 #page { background: #000000; }And if you want to learn more about CSS selectors, I recommend that you read this: http://www.w3schools.com/cssref/css_selectors.asp
Let me know if this helps!
Best regards,
Michael
-
- The topic ‘Customizing Page Background Colour’ is closed to new replies.