Is there any way to remove this excessive padding in between the up and down collection lists, as it’s too much = desktop and certainly on a mobile device . Ideally I Would like the spacing to match the spacing in between the side by side collections. Thanks URL: charleshollywood.com
HI @JacksonCHA I just checked your page and as I see, the blank space is collection title. Currently it has opacity 0, so you cannot see the title. Do you want remove the title to remove the blank space??
Hi @JacksonCHA
As I checked this space is display with collection title and now title opacity is 0.
If you want to remove this space please add css in base.css file
.collection-list-wrapper .card__content {
display: none;
}
And if in case you want to show title then please add this css
.collection-list-wrapper .card__content {
opacity: 1;
}
if it’s works then please like and accepts the solution.
Thanks
Works perfectly thank you so much
