Hello friends, how can I increase the size of this 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
!importantdeclarations - The code targets
.icon-with-text imgelements
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.
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
Thanks for helping me Walter, that solved my problem
Thanks for helping me Rahul_dhiman, that solved my problem
Happy to help you…!!!

