Back to Shopify Liquid
Summer Sale
Shopify Liquid

Summer Sale

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

26 lines · 0.4 KB
Shopify Liquid
1<div class="sale-banner">
2 <p><strong>Summer Sale now on!</strong></p>
3 <p>25% off subscriptions, 15% off everything else</p>
4</div>
5
6<style>
7.sale-banner {
8 border: 2px dashed black;
9 padding: 14px;
10 background-color: #FAFAFA;
11 width: fit-content;
12 font-family: Arial, sans-serif;
13 border-radius: 6px;
14}
15
16.sale-banner p {
17 margin: 0;
18 font-size: 14px;
19 color: black;
20}
21
22.sale-banner p strong {
23 font-size: 16px;
24 color: black;
25}
26</style>

Related snippets