Hide elements from printing or from screen

Insert the HTML Style code below at the top of the page and then insert either dontprint or printonly in the class property of the design element.
CSS • HTML


<style type="text/css">
.printonly {display:none }
@media print {  
.dontprint { display:none }
.printonly { display:inline }
}
</style>

SAMPLE USAGE

<img class="dontprint" src="image.jpg" border="0">
<img class="printonly" src="image.jpg" border="0">

Posted by fbrefere001 on Thursday September 25, 2003