Back to Shopify Liquid
Facebook Viral
Shopify Liquid

Facebook Viral

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

50 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>Facebook Badge</title>
7<style>
8 body.unique-body-Jkl345 {
9 display: flex;
10 justify-content: center;
11 align-items: center;
12 height: 100vh;
13 margin: 0;
14 background-color: #f0f0f0;
15 }
16
17 .unique-badge-Mno678 {
18 display: flex;
19 align-items: center;
20 background-color: #f8f8f8;
21 border-radius: 25px;
22 color: #000;
23 font-size: 14px;
24 font-weight: bold;
25 padding: 10px 20px;
26 text-decoration: none;
27 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
28 border: 1px solid #e0e0e0;
29 position: relative;
30 height: 35px;
31 margin: 2px 0; /* Üst ve alt 2px margin ekler */
32 }
33
34 .unique-icon-Pqr901 {
35 width: 20px;
36 height: 20px;
37 margin-right: 10px;
38 }
39</style>
40</head>
41<body class="unique-body-Jkl345">
42
43<div class="unique-badge-Mno678">
44 <img src="https://www.svgrepo.com/show/512120/facebook-176.svg" alt="Facebook Icon" class="unique-icon-Pqr901">
45 <span>Over 18M Views on Facebook</span>
46</div>
47
48</body>
49</html>

Related snippets