Forum Moderators: open
Yes it is possible, what you need is to define a stylesheet for the screen and anotherone for print(like below)
<link href="" rel="stylesheet" type="text/css" media="print" />
<link href="" rel="stylesheet" type="text/css" media="screen" />
On the print stylesheet just make every elements you don't want invisible. You may have to work with positioning as well but this is to get you started.
Hope this helps