Add padding in the first dropdown field

  • movz
    Asked on January 13, 2018 at 9:02 PM

    Struggling finding the right css for this. The space between the dropdown and the text box below is glued together and should have equal space as between the other text boxes.

    Have tried in the form designer and self help css but can't figure it out.

    Any help appreciated.



    Jotform Thread 1348570 Screenshot
  • Elton Support Team Lead
    Replied on January 14, 2018 at 12:44 AM

    There's a CSS code in your form that shrinks the height of the dropdown container. That's causing it to move down.

    Find the following CSS codes injected in your form and remove it. That should fix it.

    #id_10 {

        height: 30px;

    }

  • movz
    Replied on January 14, 2018 at 8:48 AM

    Beautiful! Thank you.