Back to Shopify Liquid

Shopify Liquid
Order Arrive
Drop this Shopify Liquid snippet into your theme to add the order arrive block. Copy the code below, paste it into your theme files, save and you're done.
43 lines · 1.3 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>Shipping Information</title>7 <style>8 body.unique-body-Ship987 {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-shipping-info-Info654 {18 display: flex;19 align-items: center;20 background-color: #fff;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: #333;26 margin: 2px;27 }28 .unique-shipping-info-Info654 img {29 margin-right: 8px;30 }31 .unique-shipping-info-Info654 span {32 font-weight: 500;33 }34 </style>35</head>36<body class="unique-body-Ship987">37 <div class="unique-shipping-info-Info654">38 <img src="https://www.svgrepo.com/show/314607/shipping-fast-solid.svg" alt="Shipping Icon" width="20" height="20">39 <span>Orders typically arrive in 1-2 working days</span>40 </div>41</body>42</html>



