Shopify themes, liquid, logos, and UX
Hi there,
On my product pages I have an Icon With Text Block, where I want to show 3 x image badges
However I cant see a way to remove the text and make the 3 x images larger to fill the section (as my images already contain text).
Any ideas?
Store details:
https://7a5425-c8.myshopify.com/
stiald
Thanks
Solved! Go to the solution
This is an accepted solution.
Hi @yapofire
- Go to Online Store -> Theme -> Edit code.
- Find the file assets/base.css and paste the code below at the bottom of the file."
.icon-with-text__item span {
display: none;
}
.icon-with-text__item img {
width: 90px;
height: auto;
}
Hey @yapofire
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>
.icon-with-text--horizontal .h4 {
display: none !important;
}
.icon-with-text img {
--icon-size: calc(var(--font-heading-scale) * 6rem) !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
Hi @yapofire
- Go to Online Store -> Theme -> Edit code.
- Find the file assets/base.css and paste the code below at the bottom of the file."
.icon-with-text__item span {
display: none;
}
.icon-with-text__item img {
width: 90px;
height: auto;
}
Modified to this, as couldnt see icon size change
.icon-with-text__item span {
display: none;
}
.icon-with-text__item img {
width: 80px !important;
height: auto !important;
}
Works great, thanks
Hi @yapofire
Great to hear that the issue has been resolved! If you need any further assistance, feel free to reach out.
Hello do you know how to add more icons? Like instead of just 3 make them 4 or 5
Hi Yapofire again 🙂 ,
Use this code in product page > custom liquid
.icon-with-text__item .h4 {
display: none;
}
.icon-with-text__item img {
width: 200%;
height: auto;
}
Adjust width as per needed
Hope to have solved your query 🙂
Discover how to increase customer engagement on your store with articles from Shopify A...
By Jacqui Apr 23, 2025Hey Community 👋 Did you know that March 15th is National Everything You Think Is W...
By JasonH Apr 1, 2025Discover how to increase the efficiency of commerce operations with Shopify Academy's l...
By Jacqui Mar 26, 2025