Why is my form cutting off at the bottom and not showing the submit button?

  • cws_support
    Asked on August 14, 2017 at 11:04 AM

    There seems to be an issue with the form height and it is cutting off the submit button - when displaying on website. When previewing the form on Jotform, the submit button displays.  Can you please check to see if there is a form height limitation on the setup of the form?

    Jotform Thread 1222914 Screenshot
  • Kevin Support Team Lead
    Replied on August 14, 2017 at 12:13 PM

    JotForm's  embed methods have a code that automatically calculates the form's height, but you could also manually set up the form's height while using the iFrame code

    Once you get the iFrame code, remove the JavaScript code that automatically calculates your form's height, example: 

       <iframe

            id="JotFormIFrame"

            onDISABLEDload="window.parent.scrollTo(0,0)"

            allowtransparency="true"

            src="https://form.jotform.com/FormID"

            frameborder="0"

            style="width:100%;

            height:6806px;

            border:none;"

            scrolling="yes">

          </iframe>

    Please also make sure to turn the scrolling property to "yes" and change the height value according to your form. 

    I hope this helps.