I was wondering how to make the collection titles appear under the image as oppose to on the image. Or at least make it so that the text is more visible?
This is my site link: https://pet-ballimu.myshopify.com/
I was wondering how to make the collection titles appear under the image as oppose to on the image. Or at least make it so that the text is more visible?
This is my site link: https://pet-ballimu.myshopify.com/
Hello There,
.collection-grid {
overflow:hidden !important;
}
.collection-grid .collection-grid-item__title {
transform:none;
top:auto;
}
Hey I’ve added this code and it puts the text below but now it is squished between rows. I tried to change the padding and margin but that only pushes text underneath the second row of images.
Also the code only changes the collections on the home page.
Hello There,
.collection-grid {
overflow:hidden !important;
}
.collection-grid .collection-grid-item__title {
transform:none;
top:auto;
}
@media only screen and (min-width: 750px){
.collection-grid-item {
margin-bottom: 60px!important;
}
}
.collection-grid-item__title-wrapper {
padding: 5% 0!important;
}
This worked great, thanks! If I cna trouble you for one more thing, how do I remove the text shadow from the title. I think it looks bad.
Hello There,
@media only screen and (max-width: 750px){
.collection-grid-item {
margin-bottom: 60px!important;
}
.collection-grid-item__title-wrapper {
padding: 6% 0!important;
}
}
.collection-grid-item__title {
text-shadow: 0 0 black!important;
}
For some reason the changes only show up for the home page. How can I apply these changes to the rest of the collection list pages? The changes have worked great for the home page though, thanks