Ahoy,
I was wondering how to add a semi transparent box behind these text areas?
Please advise.
Hey mcraig77!
Add this to a codeblock element in the page.
<style type = "text/css">
.av_two_fifth { background: rgba(0,0,0,0.3) !important; }
</style>
Regards,
Elliott
Super close as well…
For the top one I just need a box behind he text on the right… Screenshot 1
any chance of getting a black box behind this area as well? screenshot 2
Hey!
Please turn on the custom css class (link here) then edit the text block. Add a unique css class selector in the custom class field. Use “text_bg” for example then add something like this in the Quick CSS field:]
.text_bg {
background: rgba(0,0,0,0.5);
padding: 10px;
}
You can also add the css code in a code block as suggested on the previous post.
Cheers!
Ismael
That works great! Thanks!