I’ve got a page that is printer friendly except for the header and footer. Can I add a print button that prints only the body of the page, and without the colored background? Or do I need to link them to a new page, and then have them click print again? I’d rather not introduce these extra steps if I can avoid it.
Share
Not necessary. You could use a different print CSS which will specifically be used when printing. Inside this CSS you could personalize the look of different elements on your page:
The
media="print"means that this CSS will be applied only when printing.You might also checkout the print.css library.