Hi there,
I managed to remove the bottom padding under a collection card, but when I do this, I can no longer click on the collection card. This is the code I used, but it causes the card to become unclickable. If I remove the code and leave the bottom padding, I can click on the card just fine.
This is the code I used:
.collection-list-wrapper .card__content{
display: none !important;
}
Hi @liveinpeace2
You can follow the instruction here :
-
Go to Shopify > Online store > theme > customize
-
Click to Settings > Custom CSS > Paste this code to the section and save.https://prnt.sc/Rl66N9K_Bjvs
@media screen and (max-width: 768px){
.collection-list-wrapper.page-width slider-component.slider-mobile-gutter .card.card--standard.card--media {
margin-bottom: -50px !important;
}
}
Result:
Best regards,
Esther
Thanks for the fast response!
I still see a little space between the cards but its clickable! Do you also have a code that remove the whole padding. Just zero
Hi @liveinpeace2
you can change the px on the code above, from -50px to -56px : margin-bottom: -50px !important; to margin-bottom: -56px !important;
Esther