cancel
Showing results for 
Search instead for 
Did you mean: 

CUSTOM PACKING SLIPS

PB1
New Contributor

Need help to get my html correct and working. I have just taught myself to write the code.

1.Need help to make the 'order items' information to line up with their headers. 

2.Need to work out how to remove the grey background on the 'order items' 

be nice about my coding, borrowing from lots of different help sites!!

 

This is my Order Items Header code

<table id="myTable" width="100%">
<thead>
<tr>
<th style="width: 162.828px;">Fulfilment SKU
</th>
<th style="width: 197.828px;">SKU Code
</th>
<th style="width: 427.11px;">Product Name
</th>
<th style="width: 81.422px;">Quantity
</th>
<th style="width: 61.422px;">Qty to
Return
</th>
<th style="width: 127.844px;">Refund or
Exchange
</th>
<th style="width: 81.422px;">Reason Code
</th>
</tr>
</thead>
</table>
<hr>

 

This is my Order Items code

<table>
<thead>
<tr>
<th id="th1" style="width: 162.828px;"><barcode size="x-small">[UPC]</barcode>
</th>
<th id="th2" style="width: 197.828px;"><FillSku size="small">[Fill Sku]</FillSku>
</th>
<th id="th3" style="width: 427.11px;"><ProductName size="small">[Product Name]</ProductName>
</th>
<th id="th4" style="width: 81.422px;"><Quantity size="small">[Quantity]</Quantity>
</th>
<th id="th5" style="width: 290.688px;">
</th>
</tr>
</thead>
</table>

 

Thank you for your help and give it to me straight!!!! and use small words 😆

2 REPLIES 2

Harsh
New Contributor

Hi @PB1,

You will want to use the " align" attribute of the "th" tag.

i.e set the align attribute to left (so all the content would then be left aligned) 

eg. 

th align="left"

 

Regarding the background color.

You will need to use the "background-color" property of the table to set the appropiate color

eg

table style="background-color:red"

kelsie
Contributor

I found using a WISWIG editor was super helpful when setting up my custom slips seeing as Shipstation fails to update their interface for custom packing slips. The technology/ease of the custom packing slips, etc is definitely lacking.