Back to Shopify Liquid
Made in USA
Shopify Liquid

Made in USA

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

35 lines · 1.0 KB
Shopify Liquid
1<div class = "message-under-cart">
2<svg xmlns="http://www.w3.org/2000/svg" width="25" viewBox="0 0 7410 3900">
3 <title>Flag of USA — black &amp; white</title>
4 <defs>
5 <pattern patternUnits="userSpaceOnUse" width="494" height="420" id="s">
6 <path fill="#fff" d="m247 90 70.53 217.08-184.66-134.16h228.26L176.47 307.08z"/>
7 </pattern>
8 </defs>
9 <path fill="#fff" d="m0 0h7410v3900H0z"/>
10 <path stroke="#676767" stroke-width="7410" stroke-dasharray="300" d="m3705 0v3900"/>
11 <path fill="#676767" d="m0 0h2964v2100H0z"/>
12 <g fill="url(#s)">
13 <path d="m0 0h2964v2100H0z"/>
14 <path transform="translate(247,210)" d="m0 0h2470v1680H0z"/>
15 </g>
16</svg>
17Proudly made in the USA
18</div>
19
20<style>
21.message-under-cart {
22 display: flex;
23 justify-content: center;
24 gap: 10px;
25 font-size: 12px;
26 background: #f2f2f2;
27 border-radius: 8px;
28 width: max-content;
29 margin-left: auto;
30 margin-right: auto;
31 padding: 0px 20px;
32 font-weight: 600;
33 color: #676767;
34}
35</style>

Related snippets