Forum Moderators: open
<link rel="stylesheet" type="text/css" href="print.css" media="print"></link>
Mark the things you don't want to print, by adding a css class to them:
<img class="logo" src="thiswontprint.gif" />
<p>This will print</p>
<div class="someclass">this won't print either</div>
Then in the print.css file, put in css commands to hide all of the things you don't want to print.
.logo, .someclass
{
display:none;
}
This technique works really well for hiding menus, ads, and other extraneous stuff when you print.