How to change color of input boxes

  • robcabeca
    Asked on March 19, 2018 at 3:07 PM

    Hi I am trying to change the color of the input boxes. I have entered teh css codes as described in previous posts. But do i need to enter it for each box or is there a general css code that applys to all input boxes?

    Thank you!

    Robert

  • jonathan
    Replied on March 19, 2018 at 4:41 PM

    Using the Form Designer, you can inject custom CSS codes on your form like this:

    .form-textbox, [data-type="control_fullname"] .form-textbox, [data-type="control_email"] .form-textbox, [data-type="control_textarea"] .form-textarea, [data-type="control_dropdown"] .form-dropdown {

        background-color: #fff;

    }

    1521492079zzz 2018 03 20 04 Screenshot 10

    It will make the input boxes background color white.

    I hope this help. Let us know if you need further assistance.