Create Printer Friendly Blog Pages with Simple CSS
Jay White of DumbLittleMan.com writes - “Have you found a good way to allow readers to print individual post content without all of the sidebars, ads and headings messing up the print format?”
Extra stuff like logos, forms, navigation links, advertising, blogrolls, flash widgets, etc may look good when your blog page is viewed inside the web browser but these elements are almost useless for people who want to print out web pages on paper.
How to Create Printer Friendly Web Pages with a Print Style Sheet
With little effort, you can turn your blog into a printer friendly and environment friendly website (since readers will consume less ink and paper when printing your articles).
Step 1: Create a new CSS File (print.css) and add the following lines:
body {font-family: arial,helvetica,sans; font-size: 13px; background:fff; color:000;}
// Black Text on White Background
a,a:visited,a:link {color:#000; text-decoration:none}
// Do no underline links
.noprint {display:none} // This will do the magic
Step 2: Open the HTML source of your main blog template and enclose everything other than the content (like the sidebars, ad blocks, header logo, footers, etc) inside the following <span> tag
<span class=”noprint”> ….. </span>
You are instructing the browser not to print anything that appears inside the above tag.
Step 3: Add the following line inside the <HEAD> tag of your blog template
<link rel=”stylesheet” media=”handheld,print” href=”print.css” />
That’s it. To see how this works, click here and go to File->Print Preview.
This technique is not just effective for printed version of your web pages but even for PDFs - if someone prints your blog as a PDF document, they’ll see a clean version of the article without the extra bells-n-whistles. See - “Print to PDF Button for Blogs“

Very nice tip indeed and it arrived at a point when I needed it really :) Thanks.
Astonishingly, your blog does not have a separate print view!
Good tip.
Thanks for ur great explanation. This is really something great for me as i m also a blogger as well as a reader
Thanks - Just learning css. Will try to adopt the code…
Ha ha ha ha… lol… Look like a CSS class is going on…
It’s a tip for small kids.
Thanks for the tip. Separating CSS for screen and print is a very useful feature. A lot of web dev teams should apply this feature to make websites more friendly for printers.
Good CSS class by you..Amit :)..Thanks for sharing
Excellent! This will definitely help alot for creating user friendly blogs.
you are a genius! why? because what you are creating is not rocket-science, just using the basic stuff to create things that are so useful
keep up :)