• Resolved user2015

    (@user2015)


    HI,
    I′d like to use opacity in the form′s text areas backgrounds. What code should I use?
    I used to work with contact form 7 and I′ve used this code:
    .wpcf7 input[type=”text”],
    .wpcf7 input[type=”email”],
    .wpcf7 textarea
    {
    background-color: rgba(0, 0, 0, 0.2);
    }
    but it doesn′t work here

    Thank you for your help!

Viewing 1 replies (of 1 total)
  • thethemefoundry

    (@thethemefoundry)

    Hey there, @user2015 ??

    As it turns out, opacity for form parts is not yet configurable in UI of HappyForms. You can target all inputs and textareas using this code to change it:

    .happyforms-part input[type=text], .happyforms-part input[type=email], .happyforms-part textarea {
      background-color: rgba(0, 0, 0, 0.2) !important;
    }

    Hope this helps! ??

Viewing 1 replies (of 1 total)
  • The topic ‘Opacity in text area’ is closed to new replies.