Deleting the "Paid" stamp from the invoice
Last updated: 2021-05-19
You may customize the way your invoice looks. In order to do so, go to Settings > Account settings > Print settings > Customize print with CSS.
You may select whether your changes will apply to a printed invoice, previewed invoice, or both.
In order for the changes to apply to printed invoices only, start by pasting the following code:
}
@media print{
In order for the changes to apply to previewed invoices only, start by pasting the following code:
}
@media screen{
In order for the changes to apply to printed and previewed invoices, start by pasting the following code:
}
@media all{
Afterwards, simply paste the code of what you wish to customize.
How to delete the "Paid" stamp from the invoice
html body .invoice_outline { background-image: none !important; }
How to move Invoice number, issue date, due date and payment type to the right side of the invoice.
table.clean.to_half td { width:100%; }
table.clean.to_half td p { text-align: right; }
table.clean.to_half td.logo_inside, table.clean.to_half td.logo_inside p { padding:0; margin:0; width:1px !important; }
Back
Comments
Comments
Paul
2020-03-24 15:36
Kacper_Seta
you can add your custom stamp in Settings > Account settings > Print settings > Invoice stamp. Each department can also have different stamp, you can add them in Settings -> Company / department -> Edit department.
Best regards,
Kacper Seta
2020-03-24 15:59
Add Comment