One of my Pages needs to have a black background. I tried this:
html .page-id-1651 {
background-color: #000!important;
}
and :
.page-id-1651 html {
background-color: #000!important;
}
working, but changes all pages to black:
html {
background-color: #000!important;
}
Hey royaltask,
Please try the code:
html #top.page-id-1651 #wrap_all {
background-color: #000!important;
}
Best regards,
Victoria
Thank you but the background is still white.
Hi,
Please edit your page and add a Code Block element and then insert following code inside it
<style>html {
background-color: black;
}
</style>
Best regards,
Yigit
Thank you, this is working great!