![]() |
Printer Friendly Version?
Where can I get some information about making
a printer friendly version (prints as hardcopy without URL address--just document) of a Web page? Thanks in advance, Les |
Re: Printer Friendly Version?
Les Coover wrote:
> Where can I get some information about making > a printer friendly version Look up the media types section of the CSS 2 specification. > (prints as hardcopy without URL address--just document) of > a Web page? That header isn't part of the document. Author code can't remove it. -- David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/> Home is where the ~/.bashrc is |
Re: Printer Friendly Version?
"Les Coover" <lcc66604@cox.net.spam> wrote:
>Where can I get some information about making >a printer friendly version There's this thing they've invented (perhaps you've heard your friends talk about it): it's called the world wide web and it's full of information: http://www.google.com/search?q=css+print Beware of the many UA media type bugs: http://www.codestyle.org/css/media/p...rSummary.shtml -- Spartanicus |
Re: Printer Friendly Version?
Les Coover wrote:
> Where can I get some information about making > a printer friendly version (prints as hardcopy > without URL address--just document) of > a Web page? First CSS. Step by step: http://www.alistapart.com/articles/goingtoprint/ In addition (suppressing headers and footers of the browser): http://www.codestore.net/store.nsf/u...N?OpenDocument -- Nico www.nicoschuyt.nl |
Re: Printer Friendly Version?
"Nico Schuyt" <nschuyt@hotmail.com> wrote in message news:415e58e6$0$62022$ee9da40f@news.euronet.nl... > Les Coover wrote: > > Where can I get some information about making > > a printer friendly version (prints as hardcopy > > without URL address--just document) of > > a Web page? > > First CSS. Step by step: http://www.alistapart.com/articles/goingtoprint/ > In addition (suppressing headers and footers of the browser): > http://www.codestore.net/store.nsf/u...N?OpenDocument > > -- > Nico > www.nicoschuyt.nl > > Thank you for the information, We already have Acrobat files that users can print but of course they have to download Adobe Acrobat. I was trying to find a way where no install is necessary. The information you gave me seemed complicated to me (I'm fairly new at this and need to keep it simple). If I delete the title of the Web page the following code will print documents with the Web page address in the footer and a page number in the header (that may be enough for very short forms). <P><font size="+0" face="Arial, Helvetica, sans-serif"><a href="javascript:print()">Print Page</a></font> Is there a tag I can put in to make the "Print Page" text visible on screen, but not on paper? Les |
Re: Printer Friendly Version?
Les Coover wrote:
> Is there a tag I can put in to make the "Print Page" text visible on screen, > but not on paper? As Nico said -- look into the CSS print media. -- Toby A Inkster BSc (Hons) ARCS Contact Me ~ http://tobyinkster.co.uk/contact |
Re: Printer Friendly Version?
Les Coover wrote:
> Is there a tag I can put in to make the "Print Page" text visible on > screen, but not on paper? Use the code below and see what happens when printed. Look at http://www.w3schools.com/css/css_examples.asp too. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> <title>Test</title> <style type="text/css" media="all"> body {margin-left: 10%; color: blue; background: white} h1 {color: red; background: transparent} p.special {color: red; font-weight: bold} </style> <style type="text/css" media="print"> p.special {display:none} </style> </head> <body> <h1>CSS</h1> <p>Normal text</p> <p class="special">Not shown in print</p> <p>Normal text</p> <p>Normal text</p> <p>Normal text</p> </body></html> -- Nico www.nicoschuyt.nl |
| All times are GMT. The time now is 05:34 PM. |
Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.