| Posted by The Eclectic Electric on 01/15/07 13:06 
"Charl" <charl81@gmail.com> wrote in message news:1168864760.846989.285460@51g2000cwl.googlegroups.com...
 > Hi All,
 >
 > I am designing printer friendly page for my website and would like to
 > know if there is a way to add a next and print button to the web page
 > but it should not show on my print out.
 >
 > Thanks
 >
 
 Are you using CSS?  If so, you could add a print-specific style sheet that
 changes the buttons' display property to "none".
 
 In your page:
 
 <link rel="stylesheet" type="text/css" href="print.css" media="print" />
 <input ... class = "printhide">
 
 In your CSS:
 ..printhide
 {
 display: none;
 }
 
 +e
 [Back to original message] |