When I print from SuiteCRM using ‘print’ from the browser the URL’s print
At one point this was fixed
I added the following to the css
@media print {
a[href]:after {
content: none !important;
}
}
This stopped the URL’s printing but broke my Dashlets
In style.css there is the folowing code but it isnt working
/* Fix to ensure navigation elements are not included in print process */
@media print {
.navbar-inverse, .sidebar{
display: none;
}
}
any idea how I can fix this?