Reply To: text in sections with background images

Home Forums Support text in sections with background images Reply To: text in sections with background images

Home Forums Support text in sections with background images Reply To: text in sections with background images

#163630
Tom
Lead Developer
Lead Developer

You could wrap the text in a div like this:

<div class="my-transparent-div">
   My content in here
</div>

Then add some CSS for that div:

.my-transparent-div {
    background-color: rgba(0,0,0,0.3); /* black with 30% opacity */
    padding: 20px;
}