Exclude the Logo in the top of the page from printing

  • naprafe
    Asked on October 27, 2017 at 12:35 PM
    Exclude the Logo in the top of the page from printing
  • BJoanna
    Replied on October 27, 2017 at 12:42 PM

    To remove the logo when printing a form add this CSS code to your form:

    @media print {

    .form-all:before {

        display:none;

    }

    }

    How to Inject Custom CSS Codes

    1509122450print Screenshot 10

    Feel free to contact us if you have any other questions. 

  • naprafe
    Replied on October 27, 2017 at 1:56 PM

    Thank you for your answer, can you please give me an example for the CSS code I need to insert?


  • Mike
    Replied on October 27, 2017 at 2:42 PM

    Here is the CSS highlighted in yellow provided by BJoanna:

    @media print {
    .form-all:before {
    display:none;
    }
    }

    It should hide the logo in the print view.

    Related guide:

    How to Inject Custom CSS Codes

    If you need any further assistance, please let us know.