Skip to main content
All CollectionsSettings & Customisations Shipping Label Set-Up
Configuring Integrated Labels for Shipping Courier Labels
Configuring Integrated Labels for Shipping Courier Labels
S
Written by Selro Support
Updated over a week ago

Please follow the steps below to configure your integrated labels.

Please select Shipping-> Shipping Courier Set Up-> Set Up Carrier

mceclip0.png
mceclip1.png

Next please select integrated label settings/ label settings

mceclip2.png

From here you can select your label design and label size

mceclip3.png

If you select available tags this will show you the fields available to customise your invoice/ label text

mceclip4.png

If you select Views-> Source Code-> You can enter your HTML design here.

If you click on the link below you can view our pre-set template designs that you can copy .

mceclip5.png

Alternatively you can copy and paste the available HTML designs using the link below.

mceclip6.png

This is the design to copy the HTML code please right click and select 'view page source'

mceclip7.png

Please use the shipping label tag as below using the html image tag. You can adjust the with using the width parameter.

shippinglabelsimgtabdisplay.png

You can then copy and paste the below HTML code into the Source Code in Selro.

mceclip8.png
<div style="width:210mm;height:280mm">
 
 
    <div style="float:left;width:40mm;">
 
        <table style="width:100%;">
 
            <tr>
 
                <td>
                    <div style="width:120mm">
                        <img  style="width:90mm;"  src="${shipping_label!}"/>
                    </div>
 
                </td>
 
                <td  style="vertical-align:top">
 
                    <div style="padding-top:5mm;font-size: 14pt; font-family: arial;width: 100mm">
 
 
                        <div >${shippingname!}</div>
                        <div >${address_line1!}</div>
                        <div >${address_line2!}</div>
                        <div >${address_line3!}</div>
                        <div >${city!}</div>
                        <div >${state!}</div>
                        <div >${postcode!}</div>
                        <div >${country!}</div>
 
                    </div>
 
                    <br/><br/>
 
 
 
                </td>
 
            </tr>
        </table>
 
    </div>
 
 
    <div style="clear:both">
 
    </div>
 
 
 
 
 
    <div style="padding-top:5mm;clear:both;padding-right:5mm;padding-left:5mm">
 
        ${order_lines!}
    </div>
 
 
</div>
mceclip0.png
Did this answer your question?