Forum Moderators: open
Like most, I believe, my browser's print options are set to ignore background colors and images so the color doesn't print however the white font on the background does print as a light gray. Is there any way to override the browser's print option for this one table cell? Or at all for that matter?
I'd hate to have to make GIFs for all those codes. There are about 200 of them.
You would create one stylesheet called, say, monitor.css and another called printer.css. Then you call them both from the HEAD like this:
<link rel="stylesheet" type"text/css" href="monitor.css" media="screen">
<link rel="stylesheet" type"text/css" href="printer.css" media="print">
This supported by IE5+ on Windows, IE4.5+ on Mac, and I believe NN6 and Opera6. Netscape 4 did not support alternate media CSS.
Of course, this solution means using css for your colors, rather than table attributes.
(edited by: tedster at 6:48 pm (utc) on April 3, 2002)