trying to figure out how i can reduce the between row spacing for collections in debut theme
see image below
this is on my homepage located here: https://chelseasbeads.com/
trying to figure out how i can reduce the between row spacing for collections in debut theme
see image below
this is on my homepage located here: https://chelseasbeads.com/
Hi @Matt_Dubinsky ,
May I suggest to update code these steps:
.collection-grid .collection-grid-item {
margin-bottom: 0!important;
padding-bottom: 0!important;
line-height: 1;
font-size: 0;
}
.collection-grid .collection-grid-item .collection-grid-item__link {
position: static;
}
.collection-grid .collection-grid-item .ratio-container:after {
padding-bottom: 100%!important;
}
.collection-grid .collection-grid-item .collection-grid-item__title {
font-size: 26px;
margin: 10px 0 20px;
}
@media only screen and (max-width: 749px){
.collection-grid .collection-grid-item .collection-grid-item__title {
font-size: 20px;
}
}
worked perfect!!!
thank you for taking the time to help me out I appreciate it