I just found a cool way to add a css style sheet for printing. usually I would make a new design that is printer friendly just for what I want to print and have to get all the same data again. Now I just create separate styles and everything is done.
<link rel=”stylesheet” type=”text/css” media=”print” href=”print.css” />
above is an example of how to use the style sheet for your print pages. It is a huge time saver!

