Skip to main content
Topic: Export to PDF generate only 1st page? (Read 552 times) previous topic - next topic

Export to PDF generate only 1st page?

Hello,
Do you know why  in view.php export to pdf - phprad generate only first page?
How to fix that?
how to make/insert page brake?


Re: Export to PDF generate only 1st page?

Reply #1
I found a solution, it is not perfect but works for me!

in CSS
<style>
.page_break{
    page-break-before: always;
}
</style>

in view.php

 <div class="page_break"></div>