Single page background color

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.

  1. Add this in Cornerstone > CSS
body {
   background:red;
}

by adding the code in Cornerstone > CSS it will only affect that specific page.

  1. 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

Thanks @paul.r

You’re most welcome, @giusep71.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.