How can I change the size of Card Forms ?

  • Arvig
    Asked on February 14, 2018 at 2:16 PM

    Is it possible to reduce the size of the form?  We want to have the background be transparent (we were able to do this), but this also caused there to be a lot of blank space before the form begins.  Is there a way to reduce this space?

  • Marvih
    Replied on February 14, 2018 at 3:26 PM

    Yes you can, on the generated iFrame embed code you will see that it has a height property being set.

    <iframe

          id="JotFormIFrame-80443487684972"

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

          allowtransparency="true"

          allowfullscreen="true"

          src="https://form.jotform.com/Arvig/all-state-communications-contact-ca"

          frameborder="0"

          style="width: 1px;

          min-width: 100%;

          height:539px; //

          border:none;"

          scrolling="no"  >

       

    You can change and decrease the value of your form's Height property to reduce the White space on your website.

    Ex.

    height:350px;

    Also please remove the <script> tags on the iFrame code to prevent javascript conflict on your website.

    Remove the highlighted code below.

    How can I change the size of Card Forms ? Image 10