Print page after the page break

  • LegalJeff
    Asked on February 6, 2015 at 1:27 PM

    I want to print the part of the page after the page break only, how do I make that happen?

  • Mike
    Replied on February 6, 2015 at 3:15 PM

    I have not found any page breaks on your form, but it is most probably that we can inject '@media print' rules to hide specific fields on printing.

    Example:

    @media print {
    .form-all #id_1 {display: none;}
    }

    It will not print the field with id - id_1.

    If you need any further assistance on this, please let us know.