Back to Shopify Liquid

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 <img4 src="https://img.freepik.com/free-photo/stylish-african-american-woman-smiling_23-2148770405.jpg"5 alt="Customer 1"6 class="avatar"7 />8 <img9 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 <img14 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>2324<style>25 .reviews-container {26 display: flex;27 align-items: center;2829 }3031 .avatars {32 display: flex;33 margin-right: 5px;34margin-left: 7px;35 }3637 .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 }4546 .text-grey {47 font-weight: normal;48 font-size: 10px;49 color: #868686;50 line-height: 0px;5152 }5354 .text-grey strong {55 font-weight: 800;5657color: #2e2f3c58 }5960</style>



