We have created a transparency on our white pages of 65% on each individual page. However, we are unable to set the transparency of the blog page for some reason. We are getting a transparency, however, it is more like 30% rather than 65%. We thought this setting would be done in the CSS using the .site class, however, when we adjust it on the the CSS, it makes no difference on the blog page. We are quite frustrated to say the least LOL. Can you take a quick look please?
Hi @ddubois63,
In your pages, I can see your setting your section’s background with 65% transparecy but you also have this css code.
.site {
background-color: rgba(255,255,255,0.65);
}
So your sections background and you .site background tranparency are adding up in your pages.
To make it consistent, please remove your section’s background in your pages, then adjust this css instead.
For example
.site {
background-color: rgba(255,255,255,0.85);
}
Thanks
That worked beautifully! Thank you so much.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.