Invoice Customization
Back
Changing and removing margins when printing an invoice
Last updated: 2021-04-07
Note! Please remember that the following changes are visible only on the printout or in the PDF generated from the system.
In order to change any element of the invoice on the printout, go to the Settings> Account settings> Print settings tab, and then at the bottom of the page fill in the field Customize print with CSS with the CSS code shown below:
How to change the margins of a printed document:
}@media all{ .invoice_outline { padding:0.5in 0.5in 0.5in 0.5in; } }
The above values can be changed depending on your needs.
You can also use the following CSS code (may not be compatible with some browsers)
@page{size:portrait;margin:0;padding:0;}
Back
Comments
Add Comment