There is a bug in Firefox which leads to cropping content after page one in printing (cf mozillazine for instance). I found various proposed solutions, none of them worked.

ALA for instance suggests to change floating elements to float: none !important in print.css.

Other »solutions« included display: block, height: auto, width: auto and page breaks. As I said, none of them worked.

Reproduced: always on ubuntu and win xp in FF 2.0.0.12.

Comments

seul’s picture

Status: Active » Needs work

I fixed it through the following:

1. In »page.tpl.php« add a stylesheet-link for printing purposes:

<link rel="stylesheet" media="print" href="./themes/affaires/print.css" />

2. create print.css and add

.main-container{
overflow:visible !important;}

info@zrix.com’s picture

Status: Needs work » Closed (fixed)