How to reduce the vertical space between two specific fields.

  • PeterMW
    Asked on April 1, 2019 at 12:44 PM

    Hi, 

    How can I reduce space above my Text box?  I need it much closer to my Call to Text input box.



    Image from Gyazo Screenshot 10

  • David JotForm Support Manager
    Replied on April 1, 2019 at 2:04 PM

    To reduce the vertical space between those two fields, please inject this custom CSS code: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

    #id_73{

        padding-top: 0px !important;

    }

    #id_73 > p{

        padding-top: 0px !important;

    }

    #id_45{

        padding-bottom: 0px !important;

    }

    Let us know if you need more help.

  • PeterMW
    Replied on April 1, 2019 at 3:15 PM

    Thanks