Adding Custom Green Checkmark Bullet Points

Adding Custom Green Checkmark Bullet Points

tdscre
Shopify Partner
20 0 9

Hi there!

 

I’m looking to add green checkmarks (not the iOS emoji) to the bullet points on my product page next to the metafield content, similar to an example I’ve seen. Does anyone know an easy way to do this? I’d like the checkmarks to look clean and professional.


tdscre_0-1727113562718.png

 

tdscre_1-1727113562718.png

 

 

Replies 6 (6)

Moeed
Shopify Partner
5421 1463 1750

Hey @tdscre 

 

I'm unable to locate this part on your website, can you share the exact URL?

 

Best Regards,

Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


Moeed
Shopify Partner
5421 1463 1750

Hey @tdscre 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.section__block.reading-width.rte p:before {
    content: '\2713';
    color: green;
    font-size: 17px;
    position: absolute;
    left: 0;
    top: 0;
}
.section__block.reading-width.rte p {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}
</style>

RESULT:

Moeed_0-1727115003532.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


tdscre
Shopify Partner
20 0 9

<style>
.section__block.reading-width p:not(:first-of-type) {
padding-left: 30px;
position: relative;
}
.section__block p::before {
content: '✔';
font-size: 12px;
color: white;
background-color: #28a745;
border-radius: 50%;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
</style>

this codes icon is design wise a bit nice but it shows it in the left side of the screen why ??Bildschirmfoto 2024-09-23 um 19.24.28.png

tdscre
Shopify Partner
20 0 9

I really appreciate your help, but this one is showing for every part. I only wanted to show and the three bullet points.

 

Bildschirmfoto 2024-09-23 um 20.54.56.png

tdscre
Shopify Partner
20 0 9

and a circle in the background would be nice and a more decent checkmark like this one for exampleBildschirmfoto 2024-09-23 um 20.57.14.png