Hi!
When i press print button i see this: http://joxi.net/bmo9yp0IbEExAy
How delete links?
VirtueMart v3.0.16
Joomla v3.5.1
PHP v5.3.29
This is specific to some templates.
@media print {
a[href]:after {
content: " (" attr(href) ")";
}
}
To hide the URL's from your printed output add after this rule:
@media print {
a[href]:after {
content: none !important;
}
}
or remove original CSS code
Thanks!!!!!!!!!! :)