Why submit button is not showing on embedded form?

  • newfoundfarm
    Asked on March 22, 2016 at 5:46 PM

    http://newfoundfarmllc.com/JH_Registration.html 

     

    the submit button not showing.  Was working, suddenly disappeared, I reloaded code still same problem 

  • Kevin Support Team Lead
    Replied on March 22, 2016 at 6:04 PM

    I checked your website and found that this is because of the HTML element where is embedded your form, it has a fixed height and it is not allowing to show your form completely, I also checked the script of the embedded form and it seems to be working fine, please see the screencast below with the result of my test: 

    Why submit button is not showing on embedded form?  Image 1 Screenshot 30

    This could be fixed by changing the height of the element where is your form, currently it has a fixed height, you can increase this value, but would be better to leave it dynamic so you may try injecting this code in your website: 

    div.com-apple-iweb-widget-HTMLRegion {

        height: 100% !important;

    }

    It should display the element fully and allow it to show completely your form. 

    Why submit button is not showing on embedded form?  Image 2 Screenshot 41

    Do let us know how it goes.