How to make fields' text appearance consistent?

  • henryclarke10
    Asked on October 24, 2017 at 6:31 PM

    Hello,

    I have a form that someone here helped me create (in this thread) and after a few tweaks it looks pretty good, but the text on the different fields isn't consistent. I would like all the text to look the same as the "Name of Organization" and "Organization Size" fields.

    Any help would be appreciated!



  • David JotForm Support Manager
    Replied on October 24, 2017 at 9:29 PM

    Please inject the following CSS code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    ::-webkit-input-placeholder {

        font-size: 1em !important;

    }

    :-moz-placeholder {

        font-size: 1em !important;

    }

    ::-moz-placeholder {

        font-size: 1em !important;

    }

    :-ms-input-placeholder {

        font-size: 1em !important;

    }

    .form-dropdown {

        font-size: 1em !important;

    }

  • henryclarke10
    Replied on October 24, 2017 at 10:56 PM

    Thanks very much! Worked great.