Link to home
Start Free TrialLog in
Avatar of cdfllc
cdfllc

asked on

Print a cover page.

Can I  set up my webpage to print out a "cover page" when someone uses the browser print function?
I don't want the user to see this page, just add it to the "spooler" or whatever, when the document is sent to the printer.

Can this be done?

thanks
cdfllc
ASKER CERTIFIED SOLUTION
Avatar of bruno
bruno
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
pssst Bruno... page-break-after:always for the cover page?

Cd&

oh, i guess if it's to be a true page on it's own, sure.  :-)


cdfllc,

*ahem* if you want it to be a page on it's own, add page-break-after:always to the CSS...

.printonly {
    display: block;
    page-break-after:always
}
glad i could help!