Back to Shopify Liquid

Shopify Liquid
Facebook views
Drop this Shopify Liquid snippet into your theme to add the facebook views block. Copy the code below, paste it into your theme files, save and you're done.
82 lines · 1.7 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-Qwe123 {9 display: flex;10 justify-content: center;11 align-items: center;12 height: 100vh;13 margin: 0;14 background-color: #fff;15 }1617 .unique-facebook-badge-Rty456 {18 display: flex;19 align-items: center;20 justify-content: center;21 background: linear-gradient(45deg, #4267B2, #3b5998);22 border-radius: 7px;23 color: #fff;24 font-size: 14px;25 font-weight: bold;26 padding: 5px 20px;27 text-decoration: none;28 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);29 border: 3px solid transparent;30 background-clip: padding-box;31 position: relative;32 height: 35px;33 width: 100%;34 max-width: 300px;35 text-align: center;36 }3738 .unique-facebook-badge-Rty456::before {39 content: '';40 position: absolute;41 top: -3px;42 left: -3px;43 right: -3px;44 bottom: -3px;45 border-radius: 7px;46 background: linear-gradient(45deg, #4267B2, #3b5998);47 background-size: 200% 200%;48 animation: unique-gradient-animation-Uio789 3s linear infinite;49 z-index: -1;50 }5152 @keyframes unique-gradient-animation-Uio789 {53 0% {54 background-position: 0% 50%;55 }56 50% {57 background-position: 100% 50%;58 }59 100% {60 background-position: 0% 50%;61 }62 }6364 .unique-facebook-text-Poi123 {65 z-index: 1;66 white-space: nowrap;67 display: flex;68 align-items: center;69 }70</style>71</head>72<body class="unique-body-Qwe123">7374<div class="unique-facebook-badge-Rty456">75 <div class="unique-facebook-text-Poi123">76 Over 4 Million Views On Facebook77 </div>78</div>7980</body>81</html>



