Back to Shopify Liquid

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.
27 lines · 0.7 KB
Shopify Liquid
1<style>2 .red-div-wrapper {3 text-align: center; /* Center align the content */4 }56 .red-div {7 background-color: #BFE0FF;8 padding: 2px 10px; /* 6px vertical, 10px horizontal */9 border-radius: 8px; /* Rounded corners */10 display: inline-block; /* Display as inline-block */11 color: #135F96; /* Text color */12 font-weight: 500; /* Medium font weight */13 font-size: 12px; /* Set font size */14 }1516 .blink {17 color: inherit; /* Inherit color from parent */18 font-size: 12px; /* Set font size */19 margin-right: 5px; /* Add some space between the dot and the text */20 }21</style>2223<div class="red-div-wrapper">24 <div class="red-div">25 <span>Try it, risk free for 30 days!</span>26 </div>27</div>


