Removal of the inscription Seller and Buyer on the invoice

Created: 2021-02-17
Last updated: 2021-04-07

Post view count: 1094

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;} 
}

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

Sign up free


Back


Add Comment