I am working on this website that has a printing problem, if I do a print, the hyperlinks got printed out twice: here is what I meant by twice
Html code: <p>Urgent Care: <a href="tel:765-494-1700">765-494-1724</a>.</p>
Print output: Urgent Care: 7654941724 (tel:7654941700)
I ONLY NEED Urgent Care: 765-494-1724 (NOT tel:7654941700). But, I do need the hyperlink to be <a href="tel:765-494-1700">
because this hyperlink needs to be used on cellphone, and when people click on it, it will auto driven them to the dial screen.
In my print.css file, I actually already try to fix this problem by doing:
a:link, a:visited {
content: "";
}
But It did not work :( So I am hoping that I could get some ideas on this problem if possible. Thanks a million!!!
P.S.: Working on MAC OS, chrome, safari, firefox all NOT printing right...