You could -
1. Have two pages (one print friendly, the other not)
2. Have a page with some server scripting that reads a URL parameter and
chooses the stylesheet accordingly. For example, with PHP, you could have -
<link href="<?php echo (isset($_GET['print-friendly']) &&
$_GET['print-friendly'])?'printfriendly.css':'regular.css'; ?>"....
3. Have some javascript that does the same type thing, client side.
I wouldn't like the first choice as a real option since you are doubling
your work for that page.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================
"b a f" <webforumsuser.DeleteThis@macromedia.com> wrote in message
news:gm9v7a$ath$1@forums.macromedia.com...
> this discussion may have answered the question for ForensicBop, but it did
> not
> for me.
>
> I do NOT want the page to automatically use "print.css" when you send the
> web
> pages to the printer (the reason why is a long story).
>
> therefore, I would like to provide a "printer friendly" link instead. How
> do I
> make it create a new document with the new CSS rules? Would I have to use
> a
> CSS swapper?
>
> thanks!
> -b
>