HTML to PDF generator | Issue

When I convert an output of the print format into PDF file, the href link is also visible over there. Let me help to solve this problem, so that the link remain hidden in PDF file too.

for e.g: MyWebsite
will give an output in PDF as :
MyWebsite(http://www.mywebsite.com)

Hi @Chandan,

add this to your print format CSS:

a[href]:after {
        content: none !important;
}
1 Like

Thanks a lot Buddy!! this works well.