Adding Custom Green Checkmark Bullet Points

Solved

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.


Bildschirmfoto 2024-09-23 um 18.07.31.pngBildschirmfoto 2024-09-23 um 18.10.20.png

Accepted Solutions (4)
BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

- Here is the solution for you @tdscre 
- Please follow these steps:
1. Go to Online Store --> Theme --> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head> and press 'Save' to save it

<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>

- Here is the result you will achieve:

BSSTekLabs_1-1727109585841.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

<style>
.section__block.reading-width p:not(:first-of-type) {
    padding-left: 30px;
    position: relative;
}
.media-with-text .section__block p:not(:first-of-type)::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>

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

<style>
.section__block.reading-width p:not(:first-of-type) {
    padding-left: 30px;
    position: relative;
}
.media-with-text .section__block p:not(:first-of-type)::before {
    content: '';
    display: inline-block;
    background-image: url('data&colon;image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white" width="12" height="12"%3E%3Ccircle cx="8" cy="8" r="8" fill="%2328a745"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M12.207 5.207a1 1 0 00-1.414-1.414L7 7.586 5.207 5.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l4.5-4.5z" fill="white"/%3E%3C/svg%3E');
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

</style>

please try this code again @tdscre 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

BSSTekLabs_0-1727189082827.png

 

Oh, It's an error because shopify's comment makes the url wrong.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now

View solution in original post

Replies 30 (30)

BSS-TekLabs
Shopify Partner
2350 701 826

Hello @tdscre 
Our team is ready to help you.
Please share your website URL so that we can check and assist you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9
BSS-TekLabs
Shopify Partner
2350 701 826

Where is this located on your website?

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

if u scroll down at a product page down there ... 
i havent filled for everyproduct yet, u can click this product and just scroll down

https://hane313.myshopify.com/products/bett-mit-bettkasten-dimmax

Bildschirmfoto 2024-09-23 um 18.25.36.png

BSS-TekLabs
Shopify Partner
2350 701 826

BSSTekLabs_0-1727109416929.png

Do you want like this @tdscre ?

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

- Here is the solution for you @tdscre 
- Please follow these steps:
1. Go to Online Store --> Theme --> Edit code.
2. Open your theme.liquid file
3. In theme.liquid, paste the below code before </head> and press 'Save' to save it

<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>

- Here is the result you will achieve:

BSSTekLabs_1-1727109585841.png

 

- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

this check mark is pretty nice, but what if i wanna have another one? I will try soon to implement it into the code

tdscre
Shopify Partner
20 0 9

it worked but now it shows a checkmark somewhere else where it shouldnt Bildschirmfoto 2024-09-23 um 19.20.35.png

tdscre
Shopify Partner
20 0 9

it shows on the left side now, i like the checkmark really its nice but its shows on the left side .. 

Bildschirmfoto 2024-09-23 um 19.24.28.png

tdscre
Shopify Partner
20 0 9

do u see that on the left side it shows now there tooo
Bildschirmfoto 2024-09-23 um 19.24.28.png

devcoders
Shopify Partner
273 43 64

Hi @tdscre 

Do you want it like this?

Screenshot - https://prnt.sc/Zrk9tnjDj0AK

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at [email protected].
If my assistance was helpful, please consider liking and accepting the solution. Thank you!
tdscre
Shopify Partner
20 0 9

now it shows on the left side ... 

Bildschirmfoto 2024-09-23 um 19.24.28.png

BSS-TekLabs
Shopify Partner
2350 701 826

Hi, is the problem solved, is there anything else I can help with @tdscre ?

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

Hi there, the problem still remains, it is not solved .. 

BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

<style>
.section__block.reading-width p:not(:first-of-type) {
    padding-left: 30px;
    position: relative;
}
.media-with-text .section__block p:not(:first-of-type)::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>

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2350 701 826

Can you try this code @tdscre 


- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

it works, but the problem now is on IOS it shows the black arrow emoji, how can we get rid of that .. 

Bett mit Bettkasten DIMMAX – hane.jpeg

BSS-TekLabs
Shopify Partner
2350 701 826
<style>
.section__block.reading-width p:not(:first-of-type) {
    padding-left: 30px;
    position: relative;
}
.media-with-text .section__block p:not(:first-of-type)::before {
  content: '';
  display: inline-block;
  background-image: url('data&colon;image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white" width="12" height="12"><circle cx="8" cy="8" r="8" fill="%2328a745"/><path fill-rule="evenodd" clip-rule="evenodd" d="M12.207 5.207a1 1 0 00-1.414-1.414L7 7.586 5.207 5.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l4.5-4.5z" fill="white"/></svg>');
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
</style>

Can you try this code @tdscre 


- Please press 'Like' and mark it as 'Solution' if you find it helpful. Thank you.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

now its not visible, how would it be if u give me the code with link to put so i can upload the icon to shopify and then paste the link in it for a custome icon.

 

Bildschirmfoto 2024-09-24 um 16.25.00.png

BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

<style>
.section__block.reading-width p:not(:first-of-type) {
    padding-left: 30px;
    position: relative;
}
.media-with-text .section__block p:not(:first-of-type)::before {
    content: '';
    display: inline-block;
    background-image: url('data&colon;image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white" width="12" height="12"%3E%3Ccircle cx="8" cy="8" r="8" fill="%2328a745"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M12.207 5.207a1 1 0 00-1.414-1.414L7 7.586 5.207 5.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l4.5-4.5z" fill="white"/%3E%3C/svg%3E');
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

</style>

please try this code again @tdscre 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

Same again....

BSS-TekLabs
Shopify Partner
2350 701 826

data&colon;image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white" width="12" height="12"%3E%3Ccircle cx="8" cy="8" r="8" fill="%2328a745"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M12.207 5.207a1 1 0 00-1.414-1.414L7 7.586 5.207 5.793a1 1 0 00-1.414 1.414l2.5 2.5a1 1 0 001.414 0l4.5-4.5z" fill="white"/%3E%3C/svg%3E

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2350 701 826

change this to url('') @tdscre 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2350 701 826

This is an accepted solution.

BSSTekLabs_0-1727189082827.png

 

Oh, It's an error because shopify's comment makes the url wrong.

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

Can you send me a picture instead I dont know whats the correct version 

BSS-TekLabs
Shopify Partner
2350 701 826

BSSTekLabs_0-1727189259407.png

This is the exact url but I can't comment on it. can you see the picture?

 

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
BSS-TekLabs
Shopify Partner
2350 701 826

Or do you have an email address, I will send it to you @tdscre .

If our suggestions are useful, please let us know by giving it a like or marking it as a solution.


Salepify: Efficiently increase sales conversion with sale-driven features like auto add to cart, free gifts (free plan available)


Salemate: Boost your AVO with 2-layer offer, countdown upsell in your post purchase page


BSS Commerce - Full-service eCommerce Agency | Use Shopify for 1$ in the first month now
tdscre
Shopify Partner
20 0 9

Thank you very much it worked now!!!!

devcoders
Shopify Partner
273 43 64

Hi @tdscre 

Do you want it like this?

 

Screenshot - https://prnt.sc/Zrk9tnjDj0AK

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at [email protected].
If my assistance was helpful, please consider liking and accepting the solution. Thank you!
tdscre
Shopify Partner
20 0 9

Hi there thank u so much, were u able to read my previous messages here