Skip to content

How to change the name of "seller" and "buyer" on the invoice (Simple and Default invoice template)

Number of views: 3286 1 min read
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"
} @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 */
}
 

Was this entry helpful?

Share

Main response Kacper 2023-07-07 10:17

Hello,
which invoice template are you using? CSS codes from this article only work for Default, or Simple template.

Best regards,
Kacper

Comments (2)

Kacper 2023-07-07 10:17 Main response
Hello, which invoice template are you using? CSS codes from this article only work for Default, or Simple template. Best regards, Kacper
Anonymous 2023-07-06 11:40
I still can't change the header of sell and buyer to Sender and Receiver