I have a Bootstrap 3.1.1 page, that I would like to hide the URL of links when doing a print / print preview. How can I do this?
I want to show the links themselves like "Cart", "My Account", etc etc., but do not want to show the links.
Screenshot of what's occurring: http://i.imgur.com/CQoqVyN.png
@media print {
a[href]:after {
content: "";
}
}
@iamnotsam is right. I needed to add !important after the content to get it to work.
@media print {
a[href]:after {
content: "" !important;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With