How to make space between these form elements?

  • Triacees
    Asked on May 19, 2016 at 2:12 AM

    Please have a look at my form: https://form.jotformeu.com/61321764318352

    Almost at the bottom of the form there is this section from which I took the attached screenshot.

    At  this section I want to have space between the highlighted elements. I can't figure out which HTML element is the culprit. In another section of this form I managed to get the wanted result with CSS rule: 'margin-top'.

     

    Please advise me.

    Thanks a lot in advance!

    Grtz, Cees

    Jotform Thread 842311 Screenshot
  • Chriistian Jotform Support
    Replied on May 19, 2016 at 4:06 AM

    You can inject the custom css below to add some space to the specified fields.

    #id_10 {

        margin-bottom: 20px!important;

    }

    You can also modify the value of the yellow highlighted text to add more space to the fields.

    How to make space between these form elements? Image 1 Screenshot 20

    If you need further assistance, please let us know.

  • Chriistian Jotform Support
    Replied on May 19, 2016 at 6:07 AM

    Hi, I am currently checking your form. I will be back as soon as I figure out a solution.

  • Chriistian Jotform Support
    Replied on May 19, 2016 at 6:10 AM

    Hi,

    Please try this instead

    #section_40 {

        height: 90px;

    }

    #cid_40 {

        margin-bottom: 25px! important;

    }

    The result will be as below.

    How to make space between these form elements? Image 1 Screenshot 20

     

    Is this how you want it to work?

  • Boris
    Replied on May 19, 2016 at 9:40 AM

    Please try using the following CSS instead:

    #section_40 {
        min-height: 90px;
    }
    #cid_40 {
        margin-top: 25px;
    }

    The changes have been highlighted in red. This code will add 25 pixels of margin above the Form Collapse tool, resulting in form appearing like this:

    How to make space between these form elements? Image 1 Screenshot 20

    Please let us know if this is what you were after, or if you need any further assistance. Thank you.