How to adjust form when printing it as a PDF file?

  • nallen
    Asked on June 1, 2015 at 12:27 PM

    How can I modify my 3 page long form to print out on a PDF without cutting off information at the tops and the bottoms of the page??

  • Charlie
    Replied on June 1, 2015 at 12:58 PM

    Hi,

    Have you tried using a custom CSS code to identify the part where you want to add a page break for printing the form as a PDF? You can use this link as a reference.

    Here's an example:

    1. I'll add a "Text" field, in the HTML editor, I'll add this HTML code.

    <div class="page-break-here"></div>

    How to adjust form when printing it as a PDF file? Image 1 Screenshot 20

    2. I'll add those text fields in my form where I want to add the page breaks.

    3. I will then use a custom CSS code to specify the page breaks during printing.

    @media print {

    .page-break-here {

        page-break-after: always !important;

       }

    }

    You can add that inside the Form Designer Tool->CSS tab.

    Do let us know if you need more information on this. You might also be interested in converting your form to a fillable PDF form, here's a guide on it: 

    Thank you.