Forum Moderators: not2easy
Assuming you assigned your header and footer with id's, here's an example:
print.css:
#header, #footer {display: none;}
And link the "print.css" on your form page:
<link rel="stylesheet" type="text/css" media="print" href="print.css">
Cheers,
KT
I don't know if I'm very clear, but any help will be good
TIA
Jerome
I should tell to the future user to change their File>> Page Set up
They may, of course, want to print the URL along with the page. I quite consciously set my print options so that I can see on the hard copy where a got a page from. I might want to go back there!
As far as stone age browsers are concerned, it is also the case that NN4 does not recognise display:none. You can, if you have set up printer-friendly page using CSS, therefore warn NN4 users that they are not going to benefit, by including in your HTML something like
<p class="stoneage">Warning: you are using a fairly old browser, which may not be able to print this page in a readable format</p>
.stoneage { display:none; }