Need to customize submission print view to allow text but not image headers

  • jmpfeffer
    Asked on April 5, 2018 at 3:34 PM

    I am needing to customize the submission reports to be able to add heading text but not the big logo headers and google maps.  For example, I am needing to add permission/liability headers to show that the person has signed the permission, but I don't want the big Logo header with it or the google map that comes with it. I'm trying to lower the pages that print out.

    I have tried to customize it with the pdf customizer but it is not saving it correctly. I just want the text headers for all of the submissions.

    Below is the logo that shows up when I click to add text and headers. I don't want the huge logo on the submission page but need the liability info.

     1522956703Screenshot 2018 04 04 10 Screenshot 10

    This is the info that I need in all submission forms.

    1522956759Screenshot 2018 04 04 10 Screenshot 21

  • Mike
    Replied on April 5, 2018 at 5:04 PM

    We can use CSS media queries to affect the print view (when the Print button on the form is used).

    For example, it is possible to add the next CSS to hide the images from the print view:

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

    Need to customize submission print view to allow text but not image headers Image 1 Screenshot 20

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