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 reduce the size of the logo that was previously added to the invoice, use one of the following codes, depending on the used document template:
- in Default, Plain Black, Gray, Simple, Sky templates
} @media all {
#logo_place img {
width: 230px;
height: 60px;
}
} - in the Old, Blue templates
} @media all {
#logo_place+img {
width: 230px;
height: 60px;
}
}} @media all {
#logo_place+img {
width: 300px;
height: 150px;
}
}