Back to Shopify Liquid
Made in UK
Shopify Liquid

Made in UK

Drop this Shopify Liquid snippet into your theme to add the made in uk block. Copy the code below, paste it into your theme files, save and you're done.

47 lines · 2.5 KB
Shopify Liquid
1<div class = "message-under-cart">
2<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" viewBox="0 0 60 30" width="30" height="" version="1.1" id="svg20" sodipodi:docname="Flag_of_the_United_Kingdom (black and white; variant 2).svg" inkscape:version="0.92.3 (2405546, 2018-03-11)">
3 <metadata id="metadata26">
4 <rdf:RDF>
5 <cc:Work rdf:about="">
6 <dc:format>image/svg+xml</dc:format>
7 <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
8 <dc:title/>
9 </cc:Work>
10 </rdf:RDF>
11 </metadata>
12 <defs id="defs24"/>
13 <sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1920" inkscape:window-height="1017" id="namedview22" showgrid="false" inkscape:zoom="0.94666667" inkscape:cx="600" inkscape:cy="300" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1" inkscape:current-layer="g18"/>
14 <clipPath id="s">
15 <path d="M0,0 v30 h60 v-30 z" id="path2"/>
16 </clipPath>
17 <clipPath id="t">
18 <path d="M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z" id="path5"/>
19 </clipPath>
20 <g clip-path="url(#s)" id="g18">
21 <path d="M 0,0 V 30 H 60 V 0 Z" id="path8" inkscape:connector-curvature="0" style="fill:#676767;fill-opacity:1"/>
22 <path d="M 0,0 60,30 M 60,0 0,30" id="path10" inkscape:connector-curvature="0" style="stroke:#ffffff;stroke-width:6"/>
23 <path d="M 0,0 60,30 M 60,0 0,30" clip-path="url(#t)" id="path12" inkscape:connector-curvature="0" style="stroke:#676767;stroke-width:4;stroke-opacity:1"/>
24 <path d="M 30,0 V 30 M 0,15 h 60" id="path14" inkscape:connector-curvature="0" style="stroke:#ffffff;stroke-width:10"/>
25 <path d="M 30,0 V 30 M 0,15 h 60" id="path16" inkscape:connector-curvature="0" style="stroke:#676767;stroke-width:6;stroke-opacity:1"/>
26 </g>
27</svg>
28Proudly made in the UK
29</div>
30
31<style>
32.message-under-cart {
33 display: flex;
34 justify-content: center;
35 gap: 10px;
36 font-size: 13px;
37 background: #f2f2f2;
38 border-radius: 8px;
39 width: max-content;
40 margin-left: auto;
41 margin-right: auto;
42 padding: 0px 20px;
43 font-weight: 600;
44 color: #676767;
45align-items: center;
46}
47</style>

Related snippets