Forum Moderators: not2easy
I'm trying to find a way to define in the print stylesheet that when it's printed, it should use a different logo (one that was made for printing) rather than the one that's used for web.
Is there a way to do this? I've tried a few things, but I just can't get it to work.
If anyone has some suggestions, I'd love to hear them. Thank you!
<link rel="stylesheet" type="text/css" media="all" href="default.css"/>
<link rel="stylesheet" type="text/css" media="print" href="print.css"/>
in default.css
.printLogo {display: none;}
in print.css
.defaultLogo (display: none;}
Then in your code you have
<img src="default_logo.gif" class="defaultLogo">
<img src="print_logo.gif" class="printLogo">
Tom