How do I stop hyperlink addresses appearing when I print?

Category: 

  • Question

When I print webpages, the hyperlink addresses appear in parenthesis after the hyperlink. Does anyone know the cause of this and how to stop this from happening? Many thanks.

John

8/13/14

Hi John,

I removed these from a drupal cloud site by adding the following to a css injector rule:

@media print {
.noprint {display:none !important;}
a:link:after, a:visited:after {
display: none;
content: "";
}
}

Hope that helps!

-Betzi

8/15/14

Thank you. I'll give it a try.

8/18/14