How can I further reduce the space at the top of my form?

  • livro.ca
    Asked on January 30, 2018 at 8:54 PM

    how can I remove the space on top please? My css seems to cover all possible scenarios but unsure why this form is showing that much space on top.

  • Support_Management Jotform Support
    Replied on January 31, 2018 at 3:40 AM

    You can further reduce the remaining top margins/paddings by injecting these CSS CODES:

    #text_65, #text_65 h2 {

        margin-top: 0 !important;

        padding-top: 0 !important;

    }

    If these will not suffice, another way to reduce the space at the top is to move the text field (using the top attribute). Give the codes above a try first and if that won't match your required space, use these CSS CODES instead:

    #id_65 {

        top: -30px !important;

    }

    Just adjust the top value upon your discretion.