How to customize the drop down fields in my form?

  • Nmead
    Asked on July 18, 2016 at 8:00 PM

    can be seen in'live results t4' form

     

    also I would like to have font size of drop down menu as large as possible

  • Kevin Support Team Lead
    Replied on July 18, 2016 at 11:25 PM

    I have checked the code you've injected to your form and I can see there is a lot of code you are using to customize each field, for example, this is a code that is setting the width to 40 px:

    #cid_94 {

        width : 40px;

        font-size : 24px;

    }

    Although you can use this code to force all the fields to have the same size: 

    .form-dropdown{

        width:100px !important;

    }

    I would suggest you to check your code so you make sure you are not overwriting the properties you've already set with the code you injected. 

    To change the font size for all the drop downs you can inject this code: 

    .form-dropdown{

        font-size: 20px;

    }

    This should help you to change the font size for all your drop down fields at the same time.

    Hope this helps.