Hi @roberttelintelo,
The functionality of changing the background color and the image is free. Try clearing the cache in your browser. And for setting header image per page is not supported, but you can randomize header images to show on the front.
Thanks,
Ashesh
Hi @asheshmagar ,
Thank you for your answers, the header image is clear but I’m still struggling with the background colour. It took me some time to find out, but you are right that the background colour is changing.
The changed background colour isn’t visible because it looks like there is a layer on top of the page which covers the background. Changing both background colour and background picture is not visible.
I haven’t found how to solve this yet, can you support on this?
I believe I’m having the same issue here. The page background is white and it covers the majority of the homepage background image, and I can’t find a way to change the page background to be transparent so it shows the entire homepage background image
Hi,
You can set the transparency of the page background-color by adding custom CSS. Please add the following CSS to Additional CSS box and test:
// This is for boxed layout.
.boxed .site {
background-color: rgba(255,255,255,0.7)
}
// This is for wide layout.
.site {
background-color: rgba(255,255,255,0.7);
}
Play with the colors value and the last parameter for rgba is for transparency. 0 for completely transparent and 1 for completely opaque.
Help link https://docs.themegrill.com/knowledgebase/where-do-i-add-my-custom-css/
Thanks,
Ashesh