Bold data in the “Notes” section on invoices
Last updated: 2021-04-07
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 bold the information in the Notes section on the invoice, use the following CSS code:
- in Default, Old, Blue templates:
} @media all {
.inv_desc > td {font-weight:bold;}
}
- in the Plain black template:
} @media all {
#summary:first-child {font-weight:bold;}
}
- in Gray, Sky templates:
} @media all {
#notes {font-weight:bold;}
}
- in the Simple template:
} @media all {
#summary :nth-child(4) {font-weight:bold !important;}
}
Back
Comments
Add Comment