What is the css to change the color of the input text?

  • almontearts
    Asked on May 1, 2014 at 6:28 PM
    What is the css to change the color of the input text?
  • Welvin Support Team Lead
    Replied on May 1, 2014 at 7:21 PM

    Hi,

    If you want to apply it to whole form, you can use the following custom CSS codes:

    input {

    color: blue !important;

    }

    Change "blue" to any color you want. If you want to apply the color to just a specific field, then please let us know the form URL so we can check the field ID and give you the correct codes.

    Example:

    #id_100 {

    color: blue;

    }

    Where id_100 is the field ID. You can find field ID by following this guide: http://www.jotform.com/help/146-How-to-find-Field-IDs-Names

    Inject the codes to the form by following this guide: How-to-Inject-Custom-CSS-Codes

    If you require any further assistance, feel free to contact us.

    Thanks