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
With the launch of the MIT Sites service, Drupal Cloud is being phased out. Effective January 2, 2024, no new Drupal Cloud sites will be created. Students, faculty, and staff are invited to visit sites.mit.edu to create a new MIT website.
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
bbateman@mit.edu
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
jkeating@mit.edu
Thank you. I'll give it a try.
8/18/14