Button to Download or Print just the current page

  • aboratgi
    Asked on March 20, 2019 at 11:38 AM

    Hi - in the form linked below, i want to allow users to download or print the 3rd page of the form when they get to it. Then, they'll gather the forms that they need, click next, and then upload the forms on page 4. 

    I can't seem to find a way to do it. I'm familiar with CSS.

    thanks!


  • roneet
    Replied on March 20, 2019 at 1:53 PM

    What you can do is inject custom CSS in your Form Designer to hide the fields when it is printed.

    Please check the Id of the fields one by one and add all the Ids here in this code, it will hide the fields when the Form is printed and automatically those elements would be displayed which you wanted to show.

    @media print {

       li#id_21, li#id_5 {

        display: none;

    }

    }

    Button to Download or Print just the current page Image 10

    Hope this helps!

    Thanks.