Easiest way to create a printer friendly page is by creating another css file. What I did is just removing the heading style.
CSS (save the CSS file as style-print.css)
#header is id for your header (div or table)
1 2 3 | #header { display: none; } |
In HTML add this line
1 | <link rel="stylesheet" href="style-print.css" type="text/css" media="print" /> |