Invoice Customization

Moving the "invoice name and number" to the center of the document

Last updated: 2019-09-04


To move the invoice name and number to the center 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{ 



 p.invoice_title {margin-right: -72px;text-align:right !important}
 

Back


Comments

Add Comment