Changing the font size of a dropdown field

  • max123jot
    Asked on January 15, 2018 at 10:43 AM

    for these drop down fields

    For #input _142

    #input_139


    how to make the font larger


    i saw this,

    /*For dropdown options*/

    .form-dropdown {

        font-family: "Tahoma", sans-serif;

        font-size: 1.10em;

    }

    but am not knowledable of the font-size term

  • Jan
    Replied on January 15, 2018 at 11:15 AM

    Are you referring to this form (https://www.jotform.us/form/62703385659162)?

    If you want to change the font size of the text inside these dropdown fields, then you can use the CSS code below:

    #input_142 {
    font-size: 1.8em;
    }

    #input_139 {
    font-size: 1.8em;
    }

    As you notice, I just increased the "1.10em" to "1.8em". You can also use pixels (20px) if you like to.

    Hope that helps. If you are referring to a different issue, please let us know. Thank you.

  • max123jot
    Replied on January 15, 2018 at 3:43 PM
    works
    tx
    m
    ...