Skip to main content
Participant
January 3, 2021
Answered

How to Convert a webpage into pdf format

  • January 3, 2021
  • 1 reply
  • 991 views

Hi Everyone,

 

I want to convert the important pages of my website into pdf format and want users an option over the site so they can download it for offline reading. But in this scenario, I am a little confused how to do it I have tried some tools they either damage the layout or mess with the symmetry so I am looking for a solution. let say I want this page [Link removed by moderator] to be converted how can I do it with Adobe Acrobat and remain it over the site.

I would really appreciate your contributions!

Thanks

This topic has been closed for replies.
Correct answer jane-e

Create a second style sheet for your web page called "print.css". Hide the divs that you don't want to print and redefine the css so that it is print-friendly. Use that to make a PDF suitable for print.

 

Put the PDF on your website by creating a link to the PDF as you would create a link to any image using html code.

 

~ Jane

1 reply

jane-e
Community Expert
jane-eCommunity ExpertCorrect answer
Community Expert
January 3, 2021

Create a second style sheet for your web page called "print.css". Hide the divs that you don't want to print and redefine the css so that it is print-friendly. Use that to make a PDF suitable for print.

 

Put the PDF on your website by creating a link to the PDF as you would create a link to any image using html code.

 

~ Jane

Participant
January 4, 2021

Thanks alot Jane! I will apply this.