How to adjust the space between fields on the Configurable List widget?

  • CMRI
    Asked on March 25, 2017 at 9:50 PM

    Are you able to help me create more space between:

    - "Conflict of Interest to Declare" and the next line with the fields "Name" "Address" "Organisation"

     

    I can't work out what to change in the CSS to do this.

     

    Thank you!

     

    Jotform Thread 1102396 Screenshot
  • Support_Management Jotform Support
    Replied on March 26, 2017 at 5:58 AM

    Looks like you already injected some Custom CSS codes on your Configurable List widget's wizard. To increase the space below Conflict of Interest Declarations to Regsiter field, add the following CSS codes to the widget:

    td.col7 {

        padding-bottom: 40px;

    }

    Just adjust the value in px upon your discretion.

    RESULT:

    How to adjust the space between fields on the Configurable List widget? Image 1 Screenshot 20

  • CMRI
    Replied on March 26, 2017 at 6:47 AM

    Thank you! That is great.

     

    Is there code that can increase the space between Conflict of Interest Declarations to Register and the check box that says 'Yes" ?

  • Support_Management Jotform Support
    Replied on March 26, 2017 at 8:36 AM

    Awesome, glad it worked! Now, that one can be adjusted with the following CSS codes:

    td.col7:before {

        padding-right: 10px;

    }

    RESULT:

    How to adjust the space between fields on the Configurable List widget? Image 1 Screenshot 20

  • CMRI
    Replied on March 26, 2017 at 5:56 PM

    Thank you!!