A way to exclude some blocks from printing through CSS
Hi Chris,
Is there an easy way to exclude some blocks on a webpage from printing?
I tried by adding this to main.css :
[code]@media print {
.printhide {display:none;}
}
@media screen{
.printonly { display:none }
}[/code]
And on the webpage…