I Cannot Find How to Change the Font Color of the Fields in 'Fill In the Blank'

  • jesse0370159
    Asked on July 26, 2024 at 11:16 AM

    The font color of the text in the fields of the 'Fill In The Blank' are black and I need to change them to white.

    I have linked the page below.

    Thank you

  • Ibrar JotForm Support
    Replied on July 26, 2024 at 12:01 PM

    Hi jesse0370159,

    Thanks for reaching out to Jotform Support. If you want to change font color of fill in blank field, you'll have to add custom CSS code. Let me show how to do:

    • In Form builder, click on Paint roller icon.
    • Under Styles tab, scroll down to Inject Custom CSS.

    I Cannot Find How to Change the Font Color of the Fields in Fill In the Blank Image 1 Screenshot 30

    • Add below code :
    .FITB input {
    color#fff !important;
    border-color: white;
    }

    Result

    I Cannot Find How to Change the Font Color of the Fields in Fill In the Blank Image 2 Screenshot 41

    We also have a guide about How to Inject Custom CSS Codes that you can check out. Give it a try and let us know if you need any other help.

  • jesse0370159
    Replied on July 26, 2024 at 12:24 PM

    Thank you!