Invoice Customization
Hiding the Buyer header:
Hiding the headers Seller and Buyer:
} @media all{
.seller, .buyer {display:none;}
}
Hiding the Buyer header:
Hiding the headers Seller and Buyer:
Back
Removal of the inscription Seller and Buyer on the invoice
Last updated: 2021-04-07
To remove the headers Seller and Buyer from the invoice, 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 the appropriate CSS code.
CSS codes for the Default template
Hiding the Seller header:
} @media all{ span.seller {display:none;}
Hiding the Buyer header:
} @media all{ span.buyer {display:none;}
Hiding the headers Seller and Buyer:
} @media all{
.seller, .buyer {display:none;}
}
CSS codes for the Old and Blue template
Hiding the Seller header:
} @media all{
div.seller > h2 {display:none;}
Hiding the Buyer header:
} @media all{
div.buyer > h2 {display:none;}
Hiding the headers Seller and Buyer:
} @media all{
.seller>h2, .buyer>h2 {display:none !important;}
CSS codes for Plain Black and Simple template
Hiding the headers Seller and Buyer:
} @media all{
#seller_header, #buyer_header {display:none !important;}
}
CSS codes for Gray and Sky templates
Hiding the headers Seller and Buyer:
} @media all{
.header {display:none !important;}
}
Back
Comments
Add Comment