Hi,

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?

Thanks

Recommended Answers

All 4 Replies

You'll need to add some style rule in your page:

<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>
<br>
<a href="somepage.html">Link without ID</a>
</body>
</html>

I think should be a bit more specific.

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.

Thanks

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.

solved thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.