Changing backround color without cornerstone

Hy, i´d like to change the backround color of one page to black. How can i do this, without using Cornerstone ?

Hello @dani_blues,

Thanks for asking. :slight_smile:

Please add following CSS under X > Launch > Options > CSS to change background color:

.page-id-1039 .entry-wrap {
    background-color: #ddd;
}

As you are looking to change background color for a specific page, you need to use WordPress page id feature. In above code you need to replace 1039. You can refer following article to find page id.

Thanks.

Hy, it doesn´t work sorry. I set the css and replaced the id. Any idea?

Hi there,

Please try this:

.postid-81 .x-root .site {
    background-color: #ddd;
}

Hope this helps.

Thx. that works. :wink:

You’re welcome.

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