Back to Shopify Liquid
Customer Review Star 3
Shopify Liquid

Customer Review Star 3

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

61 lines · 1.7 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>Rating Widget</title>
7 <style>
8 body.unique-body-123 {
9 font-family: Arial, sans-serif;
10 }
11
12 .rating-widget-123 {
13 display: flex;
14 align-items: center;
15 }
16
17 .profile-images-123 {
18 display: flex;
19 align-items: center;
20 margin-right: 20px; /* Resimlerden uzaklaştırmak için artırıldı */
21 }
22
23 .profile-images-123 img {
24 width: 30px;
25 height: 30px;
26 border-radius: 50%;
27 margin-right: -10px;
28 border: 2px solid white;
29 }
30
31 .rating-123 {
32 display: flex;
33 align-items: center;
34 }
35
36 .rating-text-123 {
37 font-size: 14px; /* Font boyutu küçültüldü */
38 }
39
40 .highlight-123 {
41 color: #FF6347; /* Tomato color for highlights */
42 font-weight: bold;
43 }
44 </style>
45</head>
46<body class="unique-body-123">
47
48 <div class="rating-widget-123">
49 <div class="profile-images-123">
50 <img src="https://randomuser.me/api/portraits/men/1.jpg" alt="Profile 1">
51 <img src="https://randomuser.me/api/portraits/women/1.jpg" alt="Profile 2">
52 <img src="https://randomuser.me/api/portraits/men/2.jpg" alt="Profile 3">
53 </div>
54 <div class="rating-123">
55 <span class="rating-text-123">Rated <span class="highlight-123">4.5/5</span> based on <span class="highlight-123">+50 Reviews</span></span>
56 </div>
57 </div>
58
59</body>
60</html>

Related snippets