Hi is there a way I can change an individual pages background color with CSS something like-
body.page-id-246 { background-color: #000000 !important; }
This does not work for me…
Hi,
Can you post a link to your website please?
Regards,
Josue
Hi, thanks for the response, heres a link to the page
Hi,
You need to target the container_wrap div, example:
.page-id-246 .container_wrap { background-color: #000000 !important; }
Regards,
Josue
thanks for the reply, that changes the header color too…. am only trying to change the body background…
This worked for me
.page-id-246 .main_color { background-color: #000000 !important; background-image: none !important;}
Thanks you for the help :)