Need to customize submission print view to allow text but not image headers
- jmpfefferAsked on April 05, 2018 at 03: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.
This is the info that I need in all submission forms.
- JotForm SupportMikeAnswered on April 05, 2018 at 05: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;
}
}If you need any further assistance, please let us know.