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 align the logo to the left (inside its box, not to the edge of the card), copy and paste the following code:
} @media all {
#logo, #logo_place { text-align: left !important; }
#logo_place img {margin-right: auto; } To align the logo to the right (inside its box, not to the edge of the card), copy and paste the following code:
} @media all {
#logo, #logo_place { text-align: right !important; }
#logo_place img {margin-left: auto; }To align the logo to the top (inside its box, not to the edge of the card), copy and paste the following code:
} @media all {
#logo_place img { margin-top: 0px; }} @media all {
#logo_place img { margin-top: -5px; }