Align dropdown to left

  • optimized360
    Asked on May 3, 2017 at 4:23 PM

    How i can make dropdown align left.. and how i can change height and width of this field.

     

    Here is form link.

    https://www.jotform.com/build/71151003537444

     

    Thanks 

  • Kevin Support Team Lead
    Replied on May 3, 2017 at 5:56 PM

    You could align the form to the left by injecting the following CSS code: 

    .form-input-wide, [data-type="control_dropdown"]{

        width: auto !important;

    }

    To either increase or decrease the field's height/width you could inject this code: 

    .form-dropdown{

    width: 100px;

    height: 50px;

    }

    Changing the values until you get the desired field's size.

    How-to-Inject-Custom-CSS-Codes

    Hope this helps.