Text Color in input field

  • mdscj1
    Asked on November 4, 2016 at 2:26 PM

    Here's my form. The text color in the input fields are too light, when my customers type in it, it's too light to see.  How do I make it the text black when it's typed in it?

  • David JotForm Support
    Replied on November 4, 2016 at 6:32 PM

    Adding the following code to your form will change the input text color:

    https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    .form-textbox, .form-textarea{

    color:black !important;

    }

    You can change the color to whatever you would like.

  • mdscj1
    Replied on November 5, 2016 at 10:37 PM

    Great. That helped.