I’m looking for a way to change background color to a single page.
Found lots of suggestions, not sure what’s best.
Can you advise?
Thanks
Hi @giusep71,
There are two ways.
- Add this in
Cornerstone > CSS
body {
background:red;
}
by adding the code in Cornerstone > CSS it will only affect that specific page.
- Use page id class.
Add this code in Theme Options > CSS
.page-id-1 {
background:red;
}
1 is the page id, you can find the page id using our guide below
Hope that helps
1 Like
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.