Back to Shopify Liquid

Shopify Liquid
Money back 4
Drop this Shopify Liquid snippet into your theme to add the money back 4 block. Copy the code below, paste it into your theme files, save and you're done.
44 lines · 1.4 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>Money Back Guarantee</title>7 <style>8 body.unique-body-Gua123 {9 font-family: 'Arial', sans-serif;10 display: flex;11 justify-content: center;12 align-items: center;13 height: 100vh;14 margin: 0;15 background-color: #f0f2f5;16 }17 .unique-guarantee-info-Zyx987 {18 display: flex;19 align-items: center;20 background-color: #e0f7e4; /* Çok açık yeşil arka plan */21 padding: 10px 20px;22 border-radius: 8px;23 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);24 font-size: 14px;25 color: #2e7d32; /* Koyu yeşil metin */26 margin: 2px;27 }28 .unique-guarantee-info-Zyx987 img {29 margin-right: 8px;30 filter: invert(38%) sepia(76%) saturate(3053%) hue-rotate(87deg) brightness(91%) contrast(85%);31 }32 .unique-guarantee-info-Zyx987 span {33 font-weight: 500;34 }35 </style>36</head>37<body class="unique-body-Gua123">38 <div class="unique-guarantee-info-Zyx987">39 <img src="https://www.svgrepo.com/show/529489/check-read.svg" alt="Check Icon" width="20" height="20">40 <span>60-day money back guarantee</span>41 </div>42</body>43</html>



