How to add an icon with text in my product page like the image below

Solved

How to add an icon with text in my product page like the image below

NikosBat
Trailblazer
407 1 75

Hello guys, how can I add an icon with text in my product page?

 

1.png

Accepted Solution (1)

Small_Task_Help
Shopify Partner
998 39 94

This is an accepted solution.

Hi,

Hope this will help

At active theme, edit the code and add icon and text in product-template.liquid (or main-product.liquid)

Code example

<div style="display: flex; align-items: center;">
    <img src="https://your-icon-url.com/icon.png" alt="icon" width="30px" height="30px" style="margin-right: 10px;">
    <p>Your Text Here</p>
</div>

Use CSS for better styling and then update the html

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad

View solution in original post

Replies 2 (2)

Small_Task_Help
Shopify Partner
998 39 94

This is an accepted solution.

Hi,

Hope this will help

At active theme, edit the code and add icon and text in product-template.liquid (or main-product.liquid)

Code example

<div style="display: flex; align-items: center;">
    <img src="https://your-icon-url.com/icon.png" alt="icon" width="30px" height="30px" style="margin-right: 10px;">
    <p>Your Text Here</p>
</div>

Use CSS for better styling and then update the html

To Get Shopify Experts Help, Click Here or E-mail - hi@ecommercesmalltask.com
About Us - We are Shopify Expert India
At Google My Business - Ecommerce Small Task - Hire Shopify Developers Ahmedabad
NikosBat
Trailblazer
407 1 75

Thanks for your help Small_Task_Help