How to change the colors of Option Values & Placeholder?

  • rika.cran
    Asked on July 19, 2021 at 9:27 PM

    How do I edit the font color for the option values and placeholders? The font color is currently too light to see.

    Jotform Thread 3229831 Screenshot
  • Welvin Support Team Lead
    Replied on July 20, 2021 at 6:23 AM

    You will need to override the colors with custom CSS codes. The following:

    select {
    color: #2c3345 !important;
    }

    This is for the entire dropdown fields in your form.

    The following is for the placeholder texts of all input and text area selectors:

    textarea::placeholder, input::placeholder {
    color: #2c3345 !important;
    }

    Guide to inject: https://www.jotform.com/help/117-how-to-inject-custom-css-codes.