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 🙂
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025