I've made a simple "print version" for the entries in our company website. However, I am required to add a button/link for going back to the website, since, allegedly, many of our customers wouldn't think to use the back button (and, indeed, there might be some truth in that - as they kept emailing, asking for a pricelist for one entry, which was actually clearly linked to, with large underlined letters, in the description)

Okay, that's all fine and dandy - however, can I do anything to make that element not to be printed?

link|improve this question

76% accept rate
Thanks everyone (: – egasimus Nov 11 '10 at 15:52
feedback

4 Answers

up vote 5 down vote accepted

Write a css file for printout page, and just write display:none for the elements you want to hide.

<link rel="stylesheet" type="text/css" href="printOut.css" media="print">

Yes, media = "print"

link|improve this answer
feedback

here is a simple guide to print stylesheets.

link|improve this answer
feedback

In CSS:

@media print
{
    .dontPrintThis, .neitherThis { display: none; }
    .printThisBigger { font-size: 120%; }
    /* ... */
}
link|improve this answer
feedback

You can have different stylesheets for different "media" like print, projector, screen...

See list of media types.

This is a nice (but old) article on print stylesheets.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.