Closed (fixed)
Project:
Zen
Version:
6.x-1.0-beta3
Component:
layout.css
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Dec 2008 at 22:00 UTC
Updated:
20 Apr 2011 at 07:09 UTC
When Printing long pages from Zen theme or a Subtheme only the first page of content prints. After this, a blank page two will print but nothing else.
Removing this line from layout.css fixed the problem so all pages of a long page will print:
/* If a div.clear-block doesn't have any content after it, Firefox and Safari
will mistakenly place several pixels worth of space between the bottom of
the div and the bottom of the viewport. This fixes it. */
#page { overflow-y: hidden; } /* CSS3 property */
I am using Firefox 3.0 on Linux, Mac, and PC.
Can others verify this bug?
Thanks
Jon
Comments
Comment #1
jsaints commentedOr better yet.. just add this line to the bottom of print.css
#page { overflow-y: visible; }Comment #2
johnalbinFixed! Thanks for the bug report. :-)
Comment #4
merilainen commentedI stumbled upon this because I have some CCK fields missing at the end of the first page. I'm continuing work after someone and there is already
in the print.css. The remaining pages print, but two CCK fields are missing. They do print in other page when the length of the page is different.