To make the text for your item quantities stand out on your packing slips to help your shipping staff, go to the Packing Slip Template in your template settings and make the following adjustments to the HTML.
Hide Items with Zero Quantity
If you want to prevent line items from printing on the packing slips when they have a 0 quantity, select Hide Zero Quantity Items in your Print Setup > Document Options settings. This should prevent confusion when picking and packing.
-
Click the Order Items section of the packing slip editor and find the following line of code:
<td align="center">[Quantity]</td>
-
Highlight that line and replace it with the following code:
<td align="center"><span style="font-size:1.5em;font-weight:bold;">[Quantity]</span></td>
-
Download a sample to check the change.
If you'd like the font size to be bigger, try using "font-size:1.75em" instead. This equals 75% of the default font size, but you can use any number you prefer.
-
Save your changes.
-
Copy and paste the following code at the top of the Order Header section of the editor:
<style> .quantity { font-size:1.5em; font-weight: bold; } .quantity1 { font-size:1em; font-weight: normal !important; } </style>
Your Order Header should now look like this:
To change the size, adjust the value for font-size for the .quantity selector only (not the quantity1 selector).
-
Click the Order Items section and find the following line of code:
<td align="center">[Quantity]</td>
-
Highlight it and replace with the following code:
<td align="center" class="quantity quantity[Quantity]">[Quantity]</td>
-
Save your changes.