Hi guys!
I have a webpage which consists of a few images & backgrounds,
But is there a way in CSS to just have the text printed off when it comes to printing?
If so how is this done?
Cheers!!
Sorted
Hi again Guys,
I've got the probem sorted.
But would still be interested to hear any comments on this issue.
many thanks!
Printing With CSS
Not sure how you did it, but the simplest way would be to use a seperate print sheet, called like so:
<link rel="stylesheet" type="text/css" href=print.css" media="print" />
then in it, use the following:
img.class {
display: hidden;
}
you could use display: none.
(don't take this as gospel though - I've never used print stylesheets, I just thought this should work.)
Printing With CSS
Hi thepineapplehead,
That's exactly the method I went for
Seems to work a treat.
Thanks!