Back to Shopify Liquid

Shopify Liquid
Fast delivery CTA
Drop this Shopify Liquid snippet into your theme to add the fast delivery cta block. Copy the code below, paste it into your theme files, save and you're done.
65 lines · 2.4 KB
Shopify Liquid
1<div class = "fast-delivery-offer">2 <svg3 xmlns:dc="http://purl.org/dc/elements/1.1/"4 xmlns="http://www.w3.org/2000/svg"5 xmlns:xlink="http://www.w3.org/1999/xlink"6 width="15"7 fill="#007800"8 version="1.1"9 id="Layer_1"10 x="0px"11 y="0px"12 viewBox="0 0 24 24"13 style="enable-background:new 0 0 24 24;"14 xml:space="preserve"15 >16 <metadata>17 <dc:creator>Davooda</dc:creator>18 <dc:relation>https://davooda.com</dc:relation>19 </metadata>2021 <style type="text/css">22 .st0{fill:none;stroke:#039903;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}23 .st1{fill:none;stroke:#039903;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}24 .st2{fill:none;stroke:#039903;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}25 .st3{fill:#039903;}26 .st4{fill:#FFFFFF;stroke:#039903;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}27 .st5{fill:none;stroke:#039903;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}28 .st6{fill:none;stroke:#039903;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}29 .st7{fill:#010101;}30 .st8{fill:none;stroke:#039903;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}31 </style>32 <g>33 <path34 class="st0"35 d="M6,5h9v2l3.7,0.8c0.9,0.2,1.7,0.8,2.1,1.7l1.8,4c0.2,0.4,0.3,0.8,0.3,1.3v1.7V18h-3"36 />37 <line class="st0" x1="5" y1="13" x2="2" y2="13" />38 </g>39 <line class="st0" x1="15" y1="18" x2="9" y2="18" />40 <circle class="st0" cx="6.5" cy="18.5" r="2.5" />41 <circle class="st0" cx="17.5" cy="18.5" r="2.5" />42 <polyline class="st0" points="15,7 15,12 15,14 " />43 <line class="st0" x1="1" y1="9" x2="7" y2="9" />44 <line class="st0" x1="4" y1="19" x2="3" y2="19" />45 </svg>46Fast Delivery within 2-3 Days47</div>4849<style>50.fast-delivery-offer {51 display: flex;52 justify-content: center;53 gap: 10px;54 font-size: 12px;55 background: #e9fbea;56 border-radius: 8px;57 width: max-content;58 margin-left: auto;59 margin-right: auto;60 padding: 0px 20px;61 font-weight: 600;62 color: #039903;63align-items: center;64}65</style>



