Skip to content

Deleting the "Paid" stamp from the invoice

Number of views: 5448 1 min read

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; }

Was this entry helpful?

Share

Main response Kacper Seta 2020-03-24 15:59

Hello,
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

Comments (2)

Kacper Seta 2020-03-24 15:59 Main response
Hello, 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
Anonymous 2020-03-24 15:36
How to create a 2nd stamp for cancellation ?