tophersimon of Táve Gist
3/1/2017 - 11:15 PM

This hides the text in the top left of invoices and replaces it with a full width printout logo.

This hides the text in the top left of invoices and replaces it with a full width printout logo.

/* This hides the order summary at the top left */ 
#OrderPrintout .summary { 
display: none; 
} 
/* This reduces the font size for the Headline */ 
#OrderPrintout h3 { 
font-size: 16px !important; 
} 
/* This reduces the font size for the line items in the quote */ 
#PageContainer .invoice-items-table .nameCell .title, 
#PageContainer .invoiceItemsTable .nameCell .title { 
font-size: 12px !important; 
} 
/* This displays the printout logo full width */ 
.logo img{ 
width: 100%; 
height: auto; 
} 
/* Hides the line around the content */ 
#Content { 
border-top: 0; 
border-bottom: 0; 
}