Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a printable list of events, the printer prints one page fine, but cuts off some of the text on the bottom, then it print a second blank page

I've tried everything I know but am at a loss.

here's the link

share|improve this question
Your link is dead. – Abdul Rahman Mar 2 at 2:21
fixed broken link, thanks! – mjr Mar 4 at 17:53

5 Answers

up vote 13 down vote accepted

In print.css, set "overflow: visible" instead of "overflow: auto" on div#content. That fixed it for me in Firefox at least. The definition of overflow auto is: "If overflow is clipped, a scroll-bar should be added to see the rest of the content" -- but scroll bars don't exist on printed pages.

I'm guessing that since the content div should span across multiple pages, the browser thinks "you're flowing outside your container and must be clipped with a scroll bar". The container in that case is the first page the content div appears on.

share|improve this answer
1  
dude, you rock, thanks – mjr Aug 21 '09 at 15:15

If any of the containers you're trying to print are floated, they'll get cut-off like you're seeing.

In your print.css, make sure you turn off all the floating that you can without destroying your layout. It's a pain, but browser support for printing is weak at best.

share|improve this answer
no floating, double checked that – mjr Aug 21 '09 at 15:12

I just resolved this problem in ie7. This was in a Sharepoint project, which had various table cells and/or divs set to height:100%. When printed, it would print long forms, the first page or 2 would print as usual, then blank pages instead of the rest.

In my print stylesheet, I set those tables & divs to height: auto, and now it prints fine.

I'm having a different problem in IE8 now. UGH!

share|improve this answer

I fixed the problem by adding overflow:visible; and give it padding-right: 30px; to substitute for the scroll bars width.

share|improve this answer

Are you already using the print value for the media attribute for your stylesheet like

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

You might also want to use page-break-before attributes for elements that you don't want to break.

share|improve this answer
yes, the print stylesheet is definitely being used the page is really just a long list of tables, I don't really want a page break before each one – mjr Aug 21 '09 at 15:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.