Shopify themes, liquid, logos, and UX
Hi everyone,
My Shopify store is using the Bullet theme and when I use the guarantee section it currently displays 3 large icons that take up the entire screen width, I find this rather unattractive. I would like to adjust this to 5 smaller icons that fit the width of the website. I have attached a photo below to give you an idea how it currently looks and below that I've attached an example of what has drawn my inspiration.
How it currently looks:
Inspiration:
Solved! Go to the solution
This is an accepted solution.
Hi @DaveyAlcatraz ,
Add this custom CSS to the guarantee section to attain what you are looking for.
x-grid {
display: flex;
}
x-cell {
flex-grow: 1;
}
That should result into this:
This is an accepted solution.
Hi @DaveyAlcatraz ,
Add this custom CSS to the guarantee section to attain what you are looking for.
x-grid {
display: flex;
}
x-cell {
flex-grow: 1;
}
That should result into this:
Hi, I used this solution and it partially worked. The only problem is when someone views on mobile it creates a new issue. Can you please help me understand how I can fix this?
Hi @DaveyAlcatraz,
Please go to Actions > Edit code > Assets > app.css file and paste this at the bottom of the file:
@media (min-width:778px) {
.guarantee x-grid {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
}
Hi @DaveyAlcatraz,
Can you try this?
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025