Back to Shopify Liquid
Risk Free
Shopify Liquid

Risk Free

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

25 lines · 0.6 KB
Shopify Liquid
1<div class="benefits-box">
2 <div>
3 <span class="return-box">
4 RISK FREE! &#160; Get a refund and keep the item.</span
5 >
6 <div></div>
7 </div>
8</div>
9
10<style>
11 .return-box {
12 width: 100%;
13 border-radius: 5px;
14 color: #fff;
15 display: flex;
16 align-items: center;
17 padding: 8px 20px 8px 20px;
18 justify-content: center;
19 font-size: 13px;
20 background-image: linear-gradient(45deg, #1cbcc3,#1cbcc3, #4abf8f,#4abf8f 75%);
21 background-size: 100%;
22 font-weight: 600!important;
23 line-height: 15px!important
24 }
25</style>

Related snippets