Form Builder Layout: Why the bottom part of the form goes over the JotForm site footer.

  • m7ickey
    Asked on September 8, 2016 at 8:05 PM

    NEW PROBLEM! Yikes, this is crazy but true. I injected your code on 2 forms, it did solve the problem on the website but this is what happened to the jot forms build page and I can't get rid of it. I have 5 forms, this happened to both that I used that code on. Any ideas? where the words are I can no longer click to edit anything. Deleting your code didn't help. Very odd, somehow that screen got irreversibly corrupted? My other forms are fine. This may need to be sent to Jot Forms tech's

    Form Builder Layout: Why the bottom part of the form goes over the JotForm site footer Screenshot 20

  • Kevin Support Team Lead
    Replied on September 8, 2016 at 8:17 PM

    I cloned one of your forms and I could see the same, there is indeed an HTML element with the ID "stage" in the Form Builder this is why it is being affected. 

    To resolve that, please change the given code, initially I gave you this code: 

     #stage {

        height : 400px!important;

    }

    You only need to add the ".thankyou" class to indicate it will affect the HTML element with ID "stage" within the Thank You page so the final code should be like this one: 

    .thankyou #stage {

        height : 400px!important;

    }

    This way you will avoid the given code to affect the elements in the Form Builder.

     

  • m7ickey
    Replied on September 9, 2016 at 4:44 PM

    Perfect! Thanks!