Site logo

Archived topic

Override customizer background for single page

1 reply · Started by Dave on January 5, 2021

Viewing posts 1–2 of 2

Hello,
I have in gp pro theme customizer an image Background used for whole site but for a single page i want just a plain black background color

I have the simple css plugin and for that page i added the color with important but it loads black for a second then goes back to the image bg

body {
/* background-image: url(https://gl.com/wp-content/uploads/2019/03/test.jpg); */
background-repeat: no-repeat;
background-color: black !important;
}

thanks for any help

Hi there,

Can you try this CSS instead?

body {
    background-image: none;
    background-repeat: no-repeat;
    background-color: black !important;
}

Please clear and disable your caching plugin if you need further help with this.

Thanks!

This archived topic is closed to new replies.