How to remove spaces between fields?

  • stevenco
    Asked on February 18, 2017 at 1:31 PM

    Is there anyway to move eletement closer together vertically?

    There is so much wasted white space between elements.

  • Kevin Support Team Lead
    Replied on February 18, 2017 at 7:57 PM

    You could try injecting this CSS code to your form: 

    .form-line:not([data-type="control_button"]) {

        padding-top: 0px;

        padding-bottom: 0px;

        margin-top: 0px;

        margin-bottom: 0px;

    }

    This guide will help you to inject it: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes 

    Hope this helps.