PDF:add page break

  • FPHQ
    Asked on April 10, 2018 at 1:07 PM

    HI, 


    Is it possible to insert a page break in the PDF Design as I want the document to print on another page after a designated section 

  • Richie JotForm Support
    Replied on April 10, 2018 at 1:45 PM

    I have checked your form and to be able to add a page break in your PDF FORM, we can use css codes and text element.

    Select the Text element and add it into your form.

    PDF:add page break Image 1 Screenshot 40

    Click edit text,then source code and paste the code.

    <div class="pageBreak"></div>

    PDF:add page break Image 2 Screenshot 51

    Do note that, you need to add the Text element and the code to the sections you want to have a page break.

    Open your Form Designer then CSS and insert the custom css.

    @media print{

        .pageBreak {

            page-break-after : always !important;

        }

    }

    PDF:add page break Image 3 Screenshot 62

    However, if you want to add page breaks in the PDF submissions, this is not possible.

    Please give it a try and let us know how it goes.

    Thank you.