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

Created: 2020-01-27
Last updated: 2023-07-07

Post view count: 1890

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 */
}

 

Create unlimited invoices and more with InvoiceOcean. Start your 30-day free trial.

Sign up free


Back


Comments

Avatar sugester medium
somkiat
Screen shot 2566 07 06 at 16.40.11
I still can't change the header of sell and buyer to Sender and Receiver

2023-07-06 11:40


Kacper_Seta
Kacper_Seta
Has the answer   Hello,
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