I'm working on a site for a client that wants to use a specific background color site-wide EXCEPT on one page that's basically used as a separate 1-page website with unique content & styling.
My question is this... how can I apply a CSS style to all BUT a specific page ID?
My CSS currently looks like this:
.et_section_regular, #main-content {background-color: #F5EFE5 !important}
The !important is there because I'm having to override the themes default background color to begin with. I've tried using the following not: selector (referenced here) with no luck:
.et_section_regular:not (.page-id-714 .et_section_regular), #main-content:not(.page-id-714 #main-content) {background-color: #F5EFE5 !important}
Is what I'm trying to do even possible?