How to increase size of the icons?

Topic summary

A user needed help increasing the size of icons displayed on their Shopify store product page. The solution involved adding custom CSS code to modify icon dimensions.

Solution provided:

  • Navigate to: Online Store → Themes → Actions → Edit Code → Assets → section-main-product.css
  • Add CSS snippet at the end of the file setting icon height and width to 68px using !important declarations
  • The code targets .icon-with-text img elements

Outcome:
The CSS modification successfully increased the icon size as demonstrated in a before/after screenshot. The issue was resolved and the solution was accepted by the original poster.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hello friends, how can I increase the size of this icons?

Hello @NikosBat
Go to online store ----> themes ----> actions ----> edit code ----> assets ----> section-main-product.css
add this code at the end of the file and save.

.icon-with-text img {
height: 68px !important;
width: 68px !important;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks

1 Like

Thanks for helping me Walter, that solved my problem

Thanks for helping me Rahul_dhiman, that solved my problem

Happy to help you…!!!