PDA

View Full Version : Printing Footers


rwebernick
09-24-2002, 06:38 AM
Hi everyone. Does anyone know of a way to add a footer to each printed page of a web page? I can't seem to find anything on this. Any help would be much appreciated.

Thanks.

Dynasty
09-24-2002, 06:59 AM
File menu > Page Setup
in IE

rwebernick
09-24-2002, 08:47 AM
Thanks for the help. I need to know if there is a way to do this using html, css, etc. so that anyone who views and prints a page will get the footer.

HZR
09-24-2002, 10:06 AM
You can insert a different style sheet when printing if you use the media attribute with the link tag. Use media="print".

EnwTheGood
09-26-2002, 06:58 PM
Somebody posted a link to a website that had detailed explanations on using CSS to format print pages. I don't remember where the link is, though.

rwebernick
09-27-2002, 07:23 AM
Just in case anyone is interested, I figured out how to get this to work. I had to enclose the entire body of the page in a table. I then placed the footer inside &lttfoot&gt tags. Then, by giving the tfoot tag the "display: table-footer-group" style, the footer prints at the bottom of every page that the table spans.

Thanks for all of the help.