Changing the header and signature of the invoice

Created: 2014-06-16
Last updated: 2019-05-24

Post view count: 3727

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{ 

 

Changing the header

.split_three tr td:first-child strong:before { content: Example ; margin-bottom: 5px; } where content: is a variable

Changing the signature

.split_three tr td:last-child strong:after { content: - Example; margin-bottom: 5px; } where content: 

is a variable

Create unlimited invoices and more with InvoiceOcean. Start your 30-day free trial.

Sign up free


Back


Add Comment