Invoice Customization

Reducing the font size of product names on the invoice

Last updated: 2021-07-15


Note! Please remember that the following changes are visible only on the printout or in the PDF generated from the system.

In order to change any element of the invoice on the printout, go to the Settings> Account settings> Print settings tab, and then at the bottom of the page fill in the field Customize print with CSS  with an appropriate CSS code.

To make the font of product names smaller on the invoice, you need to enter the CSS code given below:

  • in Default, Old, Blue templates:

} @media { 
.name_col>span>a{font-size:50px !important;} 

 

  • in the Plain Black template:
} @media { 
td.name_col>a{font-size:50px !important;} 

}
  • in Simple, Sky, Gray templates:
} @media { 
.name_col>a{font-size:100px !important;} 

Back


Comments

Add Comment