Reply To: Using various background/content colors

Home Forums Support Using various background/content colors Reply To: Using various background/content colors

Home Forums Support Using various background/content colors Reply To: Using various background/content colors

#99710
Tom
Lead Developer
Lead Developer

Hi there,

Use CSS to target the specific pages (there’s a page-id-xx class in the <body> element) to remove the background color from the content area:

body.page-id-xx {
      background-color: #FFFFFF;
}

.page-id-xx .inside-article {
      background-color: #FFFFFF;
}

Of course, change “xx” to the page ID.

Let me know if this helps 🙂