Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #318250

    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.

    #318727

    Hey!

    Try this code instead:

    .avia_textblock {
    background: rgba(0,0,0,0.65);
    clear: both;
    padding: 10px;
    }

    Best regards,
    Josue

    #318908

    Perfect! Thanks, you guys really rock.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘TRANSPARENT TEXT BOX’ is closed to new replies.