Shopify themes, liquid, logos, and UX
Hello I am looking for help on my collection page-mobile version for Debut. I have attached how it looks on desktop vs. mobile. How do I remove the faded box beside each collection and remove the title as it is in the image? I'd like the mobile version to look like the desktop version. Thank you!
Solved! Go to the solution
This is an accepted solution.
Hi @ChristaB ,
You can try paste below code at the top of the theme.css file:
@media (max-width: 749px) {
.template-list-collections .collection-grid-item {
padding: 0;
}
.template-list-collections .ratio-container:after {
padding-bottom: 100%;
}
.template-list-collections .collection-grid-item__title-wrapper {
display: none;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi @ChristaB ,
You can follow the instruction below:
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css->paste below code at the bottom of the file:
.template-list-collections .collection-grid-item {
padding: 0;
}
.template-list-collections .ratio-container:after {
padding-bottom: 100%;
}
.template-list-collections .collection-grid-item__title-wrapper {
display: none;
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Sorry this did not work, it removed everything in my collection list and shows as blank.
This is an accepted solution.
Hi @ChristaB ,
You can try paste below code at the top of the theme.css file:
@media (max-width: 749px) {
.template-list-collections .collection-grid-item {
padding: 0;
}
.template-list-collections .ratio-container:after {
padding-bottom: 100%;
}
.template-list-collections .collection-grid-item__title-wrapper {
display: none;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Hi @ChristaB ,
You can try replace previous code by below code:
@media (max-width: 749px) {
.collection-grid-item {
padding: 0 !important;
}
.ratio-container:after {
padding-bottom: 100% !important;
}
.collection-grid-item__title-wrapper {
display: none !important;
}
}
Hope it can help you
I returned everything back to the way it was- my website is now not functioning properly on the mobile version. I click on one product and it takes me to a different one. I will contact shopify support.
sorry for that issue can you try this code
1. Go to Online Store->Theme->Edit code
2. Asset->/theme.css ->paste below code at the bottom of the file.
@media only screen and (max-width: 749px) {
.template-list-collections .collection-grid-item {padding-bottom: 0;}
.template-list-collections .collection-grid-item__overlay {background-color: transparent;}
.template-list-collections .ratio-container:after {padding-bottom: 100%;}
.template-list-collections .collection-grid-item__title {display: none;}
}
Hello, unfortunately this did not do the trick.
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