[Koha-bugs] [Bug 13032] Feature Request -- command line switch to add page breaks to overdue_notices.pl

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Oct 6 15:57:51 CEST 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=13032

--- Comment #1 from Barton Chittenden <barton at bywatersolutions.com> ---
HTML page breaks can be added as follows:

CSS:

@media all {
    .page-break    { display: none; }
}

@media print {
    .page-break    { display: block; page-break-before: always; }
}

HTML:

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

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.


More information about the Koha-bugs mailing list