How to adjust the padding in my dropdown menus?

  • advantech
    Asked on May 14, 2019 at 12:03 PM

    I have 3 drop down menus whose left margin is different from all of the text fields. What CSS is needed to adjust it? The form is https://form.jotform.com/91275722812154

    Jotform Thread 1822830 Screenshot
  • jherwin
    Replied on May 14, 2019 at 2:38 PM

    Here's the custom CSS code to adjust the padding of dropdowns to left:

    select#input_9,#input_11,#input_13 {
        padding-left : 4px!important;
    }

    Guide: How-to-Inject-Custom-CSS-Codes

    You can change the 4px to your preference. Please give it a try and let us know how it goes.