Invoice Customization
Back
How to change the name of "seller" and "buyer" on the invoice (Simple and Default invoice template)
Last updated: 2023-07-07
To customize the Simple invoice template and swap the Seller and Buyer data, go to Settings > Account Settings > Print Settings and at the bottom of the page, in the field Customize print with CSS, paste the following code:
When you are using template "Default"
-------------------------
OR: When you are using template "Simple"
When you are using template "Default"
} @media all {
span.seller,span.buyer {
color: transparent;
font-size: 0.1px;
}
span.seller:after, span.buyer:after {
display: inline-block;
color: #000;
font-size: 14px;
}
span.seller:after {
content: "New name 1"; /* Change the name here */
}
span.buyer:after {
content: "New name 2"; /* Change the name here */
}
-------------------------
OR: When you are using template "Simple"
} @media all {
div#buyer_header,div#seller_header {
color: transparent;
font-size: 0.1px;
}
div#seller_header:after, div#buyer_header:after {
display: inline-block;
color: #000;
font-size: 14px;
}
div#seller_header:after {
content: "New name 1"; /* Change the name here */
}
div#buyer_header:after {
content: "New name 2"; /* Change the name here */
}
Back
Comments
Comments
somkiat
2023-07-06 11:40
Kacper_Seta
which invoice template are you using? CSS codes from this article only work for Default, or Simple template.
Best regards,
Kacper
2023-07-07 10:17
Add Comment