How to change the input text color for all boxes to black

  • meredithhomeandschool
    Asked on May 25, 2017 at 12:10 PM

    2.I need to change the input text color for all boxes to black.

    3. The dotted lined box at bottom for expiration needs to be solid

  • BJoanna
    Replied on May 25, 2017 at 12:13 PM

    To change the input color of all fields to black add this CSS code to your form:

    .form-textbox, .form-textarea, .form-dropdown {

        color: #000000!important;

    }

    To change dotted border of dropdown fields to solid add this CSS code:

    .form-dropdown {

        border-color: #000000!important;

        border-style: solid!important;

    }

    How to Inject Custom CSS Codes

    Here is my demo form: https://form.jotformpro.com/71445159471964 

    Feel free to test it and clone it

     

    Hope this will help. Let us know if you need further assistance.