Horizontal spacing for specific fields

  • GCCResLife
    Asked on February 20, 2019 at 2:49 PM

    I have two columns of dropdowns that look perfect when I am in edit mode but when I got to preview mode they get squished together (3 per row instead of just 2) how to I work with the horizontal spacing of the dropdown fields?

    Jotform Thread 1738786 Screenshot
  • Alan_D
    Replied on February 20, 2019 at 4:09 PM

    You can fix this issue with injecting this code into your form. It will fix fields' width.
    Code is here:
    #id_90,#id_92,#id_94,#id_96,#id_98,#id_100 {
        width : 50%;
    }
    #id_91,#id_93,#id_95,#id_97,#id_99,#id_101 {
        width : 50%;
    }

    This is how you can inject this code:
    1550696767bandi Screenshot 10

    Result for 'Female':
    1550696896final Screenshot 21

    Result for 'Male':
    1550696927final2 Screenshot 32

    You can use our 'Advanced CSS Editor' to make your form much better.
    Guide is here:
    https://www.jotform.com/form-designer/tuts/episode5/

    Please tell us for further support.

  • GCCResLife
    Replied on February 21, 2019 at 8:38 AM

    This worked great, thanks!