Tagged: text box
Hi there
I’ve managed to create text boxes that are opaque/transparent, however, when I place an image in the text box the image takes on the same transparency i.e. you can see the background image.
I used this to create the transparent text box:
.avia_textblock {
background: #333333;
clear: both;
opacity: 0.65;
padding: 10px;
}
Is there a way to isolate the image that is placed in the text box so that it does not take on the same properties as the text box?
Thanks for your help – there is a link in the private area.
Hey!
Try this code instead:
.avia_textblock {
background: rgba(0,0,0,0.65);
clear: both;
padding: 10px;
}
Best regards,
Josue
Perfect! Thanks, you guys really rock.