Back to Shopify Liquid

Shopify Liquid
Easter Sale
Drop this Shopify Liquid snippet into your theme to add the easter sale block. Copy the code below, paste it into your theme files, save and you're done.
48 lines · 1.1 KB
Shopify Liquid
1<!DOCTYPE html>2<html lang="en">3<head>4<meta charset="UTF-8">5<meta name="viewport" content="width=device-width, initial-scale=1.0">6<title>Easter Badge</title>7<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">8<style>9 body.unique-body-easter {10 display: flex;11 justify-content: center;12 align-items: center;13 height: 100vh;14 margin: 0;15 background-color: #fffaf0;16 }1718 .badge-container-easter {19 display: flex;20 align-items: center;21 background-color: #ffeb3b; /* Sarı arka plan */22 border-radius: 12px;23 padding: 8px 12px;24 box-shadow: 0 4px 6px rgba(255, 235, 59, 0.5);25 font-size: 14px;26 color: #000; /* Siyah metin rengi */27 margin: 10px 0; /* Aşağı ve yukarı boşluk ekler */28 }2930 .badge-icon-easter {31 width: 20px;32 height: 20px;33 margin-right: 8px;34 font-size: 20px;35 color: #000;36 }37</style>38</head>39<body class="unique-body-easter">4041<div class="badge-container-easter">42 <i class="material-icons badge-icon-easter">redeem</i>43 <span>Easter Sale Ending Soon!</span>44</div>4546</body>47</html>



