View Single Post
  #2 (permalink)  
Old 07-14-2006, 01:28 AM
arvana's Avatar
arvana arvana is offline
WebProWorld Pro
 
Join Date: Jul 2003
Location: Guelph, Ontario, Canada
Posts: 153
arvana RepRank 0
Default

You'll need to set up a style for the copyright notice, which can be set to "display:none" in your on-screen stylesheet.

HTML: <p class="doNotDisplay">copyright notice</p>

CSS (screen): p.doNotDisplay {display:none}

CSS (print): p.doNotDisplay {display:block; position:fixed; bottom:0}

The CSS in the print stylesheet will put it at the bottom of each page in SOME browsers, but no guarantee it will work universally. CSS doesn't have good support yet for printing functions.
__________________
Arvana
arvanadesign.com
Reply With Quote