I have a WordPress site using the Genesis Framework Altitude Pro Theme…
I created a landing page with a background image…
However, the area where the title and text go is solid white. I would like to be able to adjust the opacity of this area I tried to insert the following css directly on the page, but it didn’t work…
<style type=”text/css”>
body {
background-image: url(‘/wp-content/uploads/2019/11/network.jpg’);
background-attachment: fixed; /* or scroll if you want the image to scroll with the page */
background-size: cover; /* or contain, or other sizing options */
background-color: rgba(255, 255, 255, 0.5); /* Adjust the alpha value to control the transparency */
}
</style>
Note that the css was generated by AI as I am totally unfamiliar with this… So it might be completely wrong…
Any ideas?
[ad_2]