Invoice Customization

Moving invoice number, issue date, due date and payment type to the right side of the document

Last updated: 2021-11-09


To move the invoice number, issue date, due date and payment type to the right side of the document, go to Settings > Account settings > Print settings > Customize print with CSS and paste the following CSS code:

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{ 



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

movingtoright

Back


Comments

Add Comment