Can I indicate which pages of a form to print when I add a print button?

  • TCFSH
    Asked on March 19, 2018 at 1:07 PM
  • Welvin Support Team Lead
    Replied on March 19, 2018 at 2:32 PM

    You cannot, but there's a workaround by doing it with a custom CSS codes. Let us know what page would you like to appear in the print layout. We'll compile you the needed codes to hide the other elements. 

  • TCFSH
    Replied on March 19, 2018 at 2:37 PM

    Thanks so much.  I would like the user to print all EXCEPT pages 3 and 4.

    https://form.jotform.com/TCFSH/tcfsh-volunteer-on-boarding


  • Welvin Support Team Lead
    Replied on March 19, 2018 at 3:07 PM

    Please check this cloned version of your form: https://form.jotform.com/80775939086978.

    If the print out is correct, please inject the following custom CSS codes:

    @media print {

    li#id_76,

    li#id_43,

    li#id_29 {

    display: none;

    }

    }

     

    Guide to inject here https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes

  • TCFSH
    Replied on March 19, 2018 at 3:17 PM

    The clone form worked.  I copied and pasted into the CSS Codes and saved, but it didn't seem to work.  Not sure what i'm missing.  

  • Welvin Support Team Lead
    Replied on March 19, 2018 at 3:33 PM

    My apologies. I missed a closing bracket. Please copy/paste the following:

    @media print {

    li#id_76,

    li#id_43,

    li#id_29 {

    display: none;

    }

    }


  • TCFSH
    Replied on March 19, 2018 at 3:35 PM

    Woohoo!  Perfect.  Thanks so much!