Currently i’m working on a new print format for our quotes.
We would like to have an background image on every PDF page generated.
I’ve managed to fix this for the preview version, by setting a background on thte .print-format class.
But this is not showing up on the PDF.
Is their onther any way of setting a background image in the PDF files?
We’re still not able to add a background image on every PDF page (in case of a multi paged PDF) generated by ERPNext.
How can we manage this the best way?
@volkswagner , I am implementing the following CSS for a background image:
.print-format {
background-image: url(“/files/abc.jpeg”);
background-size: 800px 1122px;
}