Back to Shopify Liquid
Limited time offer
Shopify Liquid

Limited time offer

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

29 lines · 1.0 KB
Shopify Liquid
1<div class = "limited-time-offer">
2<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#d9534f" width="15" version="1.1" id="Capa_1" viewBox="0 0 490 490" xml:space="preserve">
3<g>
4 <g>
5 <path d="M245,0C109.5,0,0,109.5,0,245s109.5,245,245,245s245-109.5,245-245S380.5,0,245,0z M245,449.3 c-112.6,0-204.3-91.7-204.3-204.3S132.4,40.7,245,40.7S449.3,132.4,449.3,245S357.6,449.3,245,449.3z"/>
6 <path d="M290.9,224.1h-25v-95.9c0-11.5-9.4-20.9-20.9-20.9s-20.9,9.4-20.9,20.9V245c0,11.5,9.4,20.9,20.9,20.9h45.9 c11.5,0,20.9-9.4,20.9-20.9S302.3,224.1,290.9,224.1z"/>
7 </g>
8</g>
9</svg>
10Limited time offer - 25% off!
11</div>
12
13<style>
14.limited-time-offer {
15 display: flex;
16 justify-content: center;
17 gap: 10px;
18 font-size: 12px;
19 background: #f8d7da;
20 border-radius: 8px;
21 width: max-content;
22 margin-left: auto;
23 margin-right: auto;
24 padding: 0px 20px;
25 font-weight: 600;
26 color: #d9534f;
27align-items: center;
28}
29</style>

Related snippets