Sunday 05 March 2006 5:27:22 am
Hi risto, You could use css to hide link on print page. Just create css file with:
a {
display: none;
}
and include that file like:
<LINK rel="stylesheet" media="print" href="YOUR_FILE.CSS" type="text/css">
Notice that media="print". Media can be "screen" or "print". That will do the trick :-) S.
---
If at first you don't succeed, look in the trash for the instructions.
|