How to change color of input boxes

  • Profile Image
    robcabeca
    Asked on March 19, 2018 at 03: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



    This is a re-post of a comment on How to Inject Custom CSS Codes

  • Profile Image
    Jonathan
    Answered on March 19, 2018 at 04: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.38.48.png

    It will make the input boxes background color white.

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