How to add line for each items in packing slip ?
thanks for helping
like that
A user asks how to add horizontal lines separating each item in their Shopify packing slip template.
Solution provided:
{% for line in shipping_lines %})<hr> tag after each </tr> (table row) elementborder: 0; border-top: 1px solid #ddd; margin: 10px 0;The response includes step-by-step instructions for modifying the template code to achieve the visual separation shown in the user’s reference image.
Hi @Greenswift
To add a line for each item in the packing slip as shown in the image:
hr {
border: 0;
border-top: 1px solid #ddd;
margin: 10px 0;
}
Then, Insert
Lastly, Save changes and test the packing slip.
This will create a horizontal line separating items.
Regards,