Back to Shopify Liquid
Reviews v1
Shopify Liquid

Reviews v1

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

66 lines · 1.9 KB
Shopify Liquid
1<div class="happy-customersV2">
2 <div class="avatarsV2">
3 <img src="https://img.freepik.com/free-photo/stylish-african-american-woman-smiling_23-2148770405.jpg" alt="Customer 1" class="avatarV2" />
4 <img src="https://thumbs.dreamstime.com/b/beautiful-african-american-woman-relaxing-outside-happy-middle-aged-smiling-46298787.jpg" alt="Customer 2" class="avatarV2" />
5 <img src="https://media.istockphoto.com/id/1320651997/photo/young-woman-close-up-isolated-studio-portrait.jpg?s=612x612&w=0&k=20&c=lV6pxz-DknISGT2jjiSvUmSaw0hpMDf-dBpT8HTSAUI=" alt="Customer 3" class="avatarV2" />
6 </div>
7 <span class="textV2">
8<span style = "font-weight: 900;">Michelle</span>
9 <span class="verifiedV2">
10 <img
11 src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Twitter_Verified_Badge.svg/800px-Twitter_Verified_Badge.svg.png"
12 alt="verified badge"
13 class="verifiedV2">
14 </span>
15 <span>and <strong>758</strong> people purchased</span>
16</span>
17</div>
18
19<style>
20 .happy-customersV2 {
21 display: flex;
22 align-items: center;
23 background-color: #ffffff;
24 border-radius: 8px;
25 padding: 5px 15px;
26 font-family: Roboto, sans-serif !important;
27 font-size: 12px;
28 color: #000;
29 box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
30 }
31
32 .avatarsV2 {
33 display: flex;
34 margin-right: 10px;
35 }
36
37 .avatarV2 {
38 width: 22px;
39 height: 22px;
40 border-radius: 50%;
41 border: 2px solid white;
42 margin-left: -7px;
43 object-fit: cover;
44 }
45
46.textV2 {
47 font-weight: normal;
48 font-size: 12px;
49 color: #000;
50 line-height: 0px;
51 display: flex;
52 align-items: center;
53 gap: 3px;
54}
55
56 .textV2 strong {
57 font-weight: 800;
58 font-family: Roboto, sans-serif;
59 }
60
61 .verifiedV2 {
62 vertical-align: middle;
63 height: 13px;
64 width: 13px;
65 }
66</style>

Related snippets