Back to Shopify Liquid
30 days Money Back Guarantee
Shopify Liquid

30 days Money Back Guarantee

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

46 lines · 1.5 KB
Shopify Liquid
1<div class="message-container">
2 <div class="dot"><span style="visibility: hidden;">.</span></div>
3 <div class="text-mbg">30-day money back guarantee, no questions.</div>
4</div>
5
6<style>
7 .message-container {
8 display: flex;
9 align-items: center;
10 background-color: #e9fbea;
11 border: 1px solid #d4edda;
12 border-radius: 8px;
13 padding: 10px 10px;
14 max-width: 400px;
15 width: 100%;
16 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
17 }
18 .message-container .dot {
19 width: 10px;
20 height: 10px;
21 background-color: #007800; /* Darker green for contrast */
22 border-radius: 50%;
23 margin-right: 15px;
24 box-shadow: 0 0 10px #00a000; /* Initial glow effect */
25 animation: pulse 1.5s infinite; /* Apply pulsing animation */
26 }
27 @keyframes pulse {
28 0% {
29 box-shadow: 0 0 10px #00a000;
30 transform: scale(1);
31 }
32 50% {
33 box-shadow: 0 0 20px #00a000;
34 transform: scale(1);
35 }
36 100% {
37 box-shadow: 0 0 10px #00a000;
38 transform: scale(1);
39 }
40 }
41 .message-container .text-mbg {
42 font-size: 12px;
43 color: #039903;
44 line-height: 0px;
45 }
46</style>

Related snippets