I just wonder if this is possible. When i print a page from my localhost or web, the html link information is printed at the end of the page. How can disable it?
<html>
<head>
<title>Test Page</title>
<style type="text/css">
<!--
@media print {
/* Applies to all the links in the page */
a { display : none; }
/* or if you just need to disable specific link */
a#someLinkId { display : none; }
}
@media screen {
a { display : inline; }
}
-->
</style>
</head>
<body>
<a id="someLinkId" href="somepage.html">Link with specified ID</a>
<a href="somepage.html">Link without ID</a>
</body>
</html>
I mean, When i select "Print" from "File" menu from IE or Firefox, the printed paper has the link of the current printed page at the bottom of the A4 paper. I don't want it to be printed on paper.
This is a computer specific issue. To remove the tag in IE go to File - Page setup, the footer field should show something like: &u&b&d. Delete this and close window. Try printing and the footer with the pagelink should not be there.