Back to Shopify Liquid
Money Back
Shopify Liquid

Money Back

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

27 lines · 0.9 KB
Shopify Liquid
1<div class="custom-container-GxfzQpBzq" style="background-color: #dfffd9; border-radius: 10px; padding: 10px; margin-top: 5px; margin-bottom: 5px; position: relative; overflow: hidden;">
2 <div class="custom-circle-VzMgxLkRf"></div>
3 <span class="custom-text-TnBcGxHnq" style="margin-left: 10px; font-size: 16px;">30-day money back Guarantee</span>
4</div>
5
6<style>
7 @keyframes glow-animation-CtGxjLrMq {
8 0% { box-shadow: 0 0 10px 0 rgba(0, 255, 0, 0.7); }
9 50% { box-shadow: 0 0 20px 10px rgba(0, 255, 0, 0.3); }
10 100% { box-shadow: 0 0 10px 0 rgba(0, 255, 0, 0.7); }
11 }
12
13 .custom-circle-VzMgxLkRf {
14 width: 10px;
15 height: 10px;
16 border-radius: 50%;
17 background-color: green;
18 display: inline-block;
19 animation: glow-animation-CtGxjLrMq 2s infinite ease-in-out;
20 }
21
22 .custom-text-TnBcGxHnq {
23 margin-left: 10px;
24 font-size: 16px;
25 }
26</style>

Related snippets