printing question

P

Paul

I need my web site visitor to print an order form, how do I achieve this
without headers , borders , footers etc printing

best regards

Paul
 
T

Tom Pepper Willett

You will need to create a "printer friendly" page without the headers,
borders, footers, etc.
--
=====================================================
Tom Pepper Willett [Microsoft MVP - FrontPage]
----------------------------------------------------------------------------
-------------------
Microsoft FrontPage:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
http://msdn.microsoft.com/office/understanding/frontpage/

=====================================================
| I need my web site visitor to print an order form, how do I achieve this
| without headers , borders , footers etc printing
|
| best regards
|
| Paul
|
|
 
J

Jon Spivey

or you can make a print stylehseet like ths
<style type="text/css" media="print">
..noPrint{
display:none !important;
}
</style>
or stick this in a seperate print stylesheet and link it in like this
<link rel="stylesheet" type"text/css" href="print.css" media="print">

and then give anything you don't want to print the class noPrint, eg
<p class="noPrint">this text won't print</p>

Only downside is NN4 will ignore it - but every other browser will be fine
 
Top