Back to Shopify Liquid
Halloween
Shopify Liquid

Halloween

Drop this Shopify Liquid snippet into your theme to add the halloween 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>Halloween Badge</title>
7<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
8<style>
9 body.unique-body-Hel123 {
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 background-color: #1a1a1a;
16 }
17
18 .unique-badge-container-Hel456 {
19 display: flex;
20 align-items: center;
21 background-color: #ff7518; /* Turuncu arka plan */
22 border-radius: 12px;
23 padding: 8px 12px;
24 box-shadow: 0 4px 6px rgba(255, 117, 24, 0.5);
25 font-size: 14px;
26 color: #fff; /* Beyaz metin rengi */
27 margin: 10px 0; /* Aşağı ve yukarı boşluk ekler */
28 }
29
30 .unique-badge-icon-Hel789 {
31 width: 20px;
32 height: 20px;
33 margin-right: 8px;
34 font-size: 20px;
35 color: #fff;
36 }
37</style>
38</head>
39<body class="unique-body-Hel123">
40
41<div class="unique-badge-container-Hel456">
42 <i class="material-icons unique-badge-icon-Hel789">emoji_emotions</i>
43 <span>Halloween Sale Ending Soon!</span>
44</div>
45
46</body>
47</html>

Related snippets