As you can see, the area under the text is transparent, which reveals the full-page image underneath.
This is what I want.
The current theme I’m using ( http://michaeldaviddesign.com/themes/affinity/page11/index.html )
allows you to change the colour under the text but not the opacity of that colour.
So now I have the full page image blocked out by the colour background under the text.
Is there CSS that will allow me to reduce the opacity of that?
I’m not sure exactly which element you want to target but in general:
target the element{
background-color: rgba(20,150,10,.5);
}
The .5 is 50% opacity
Does that help?
if you can be more specific on what you want to target maybe you can get a more specific solution.
the page you linked to had no background image with text on top.
A screen shot doesn’t really help.
Have you got a url of the published page? With a published page I can have a look and get the element name.
Do you know how to use the developer tools in your browser? if so you can preview it locally and find the element name.