You can use the script X component to remove the IE-inserted header and footer from the printed page.
http://www.meadroid.com Darryl -----Original Message----- From: Tim Donovan [mailto:[EMAIL PROTECTED] Posted At: Wednesday, 26 February 2003 9:43 AM Posted To: CFAussie Conversation: [cfaussie] Re: Header and footer on printing page Subject: [cfaussie] Re: Header and footer on printing page The only way I know is with CSS....but I do know it doesn't work with some older browsers. CSS Code ////////////// @media screen{ Div.menutable {width:200} } <!--- This is the width of my left navigation col ---> @media print { div.navheader{ display: none; } Div.menutable {width:0} } ---------------------- HTML Page Code ////////////// <DIV class=NavHeader> <!--- when this page is printed nothing between these tages prints ---> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="743"><img alt=" " name="header_r1_c1" src="images/header_r1_c1.gif" width="743" height="111" border="0" usemap="#m_header_r1_c1"></td> <td width="100%"><img alt=" " name="header_r1_c2" src="images/header_r1_c2.gif" width="100%" height="111" border="0"></td> </tr> </table> </div> ---------------------------- if this doesn't make sense let me know see www.ccsd.biz for an example. Regards Tim "Anthony Bennett" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > Hi all, > > sometime last year that was a post about being able to change the > header on > a web page when its being printed. > > We have a client who wants a printable page done for his products, and > doesnt want to have the URL on the footer. > > Has anyone been able to change the footer when a web page is printed? > > thanks > > Anthony > > > --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/ --- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] MX Downunder AsiaPac DevCon - http://mxdu.com/
