Remove spacing from question

  • astagliano
    Asked on July 26, 2017 at 9:16 AM

    Hi:

    I need to have the spacing removed from one of my questions, "Please select your skills. Chose all that apply."

    I had to use the Multiple Choice element so that the selections are titled on excel spreadsheet report.

    The problem with using the Multiple Choice is that is leaves spacing between the answers.

     

    I added some CSS code for the next question to have the same result, but I was not able to get it to work and so a clone form was created and being used.

     

    Can you help me with that?

     

    Thanks,

    Priscilla

  • BJoanna
    Replied on July 26, 2017 at 12:39 PM

    You will need to change the height of those fields. Add this CSS code to your form:

    li#id_58, li#id_59 {

        height: 25px;

    }

    li#id_57 {

        height:40px!important;

    }

    li#id_60{

        height:30px;

    }

    How to Inject Custom CSS Codes

    After you add mentioned code your form will look like this. 

    Remove spacing from question Image 1 Screenshot 20

    Here is my demo form: https://form.jotformpro.com/72065237669969 

    Feel free to clone it

    Hope this meet what you are looking for.