Is there a way to prevent the form from being printed?

  • jobfair
    Asked on June 1, 2017 at 6:16 PM

    Is there a way to prevent the form from being printed?

  • Jan
    Replied on June 1, 2017 at 8:52 PM

    Yes, this is possible through custom CSS. Here's the CSS code that will only activate when the user tries printing the form from the browser:

    @media print {

    .form-all {
       display: none !important;
    }

    }

    Here's a guide on How-to-Inject-Custom-CSS-Codes. Hope that helps. Thank you.