Back to Shopify Liquid
Reviews v2
Shopify Liquid

Reviews v2

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

60 lines · 1.2 KB
Shopify Liquid
1<div class="reviews-container">
2 <div class="avatars">
3 <img
4 src="https://img.freepik.com/free-photo/stylish-african-american-woman-smiling_23-2148770405.jpg"
5 alt="Customer 1"
6 class="avatar"
7 />
8 <img
9 src="https://thumbs.dreamstime.com/b/beautiful-african-american-woman-relaxing-outside-happy-middle-aged-smiling-46298787.jpg"
10 alt="Customer 2"
11 class="avatar"
12 />
13 <img
14 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="
15 alt="Customer 3"
16 class="avatar"
17 />
18 </div>
19 <span class="text-grey">
20rated <strong>4.5/5</strong> based on <strong>+650 Reviews</strong>
21</span>
22</div>
23
24<style>
25 .reviews-container {
26 display: flex;
27 align-items: center;
28
29 }
30
31 .avatars {
32 display: flex;
33 margin-right: 5px;
34margin-left: 7px;
35 }
36
37 .avatar {
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 .text-grey {
47 font-weight: normal;
48 font-size: 10px;
49 color: #868686;
50 line-height: 0px;
51
52 }
53
54 .text-grey strong {
55 font-weight: 800;
56
57color: #2e2f3c
58 }
59
60</style>

Related snippets