I need to know how to fix the price alignment in the featured collection when one product name is bigger than the other. In my case, I´m having the problem just on mobile but it would be nice to know how to fix it in both cases.
Thanks.
I need to know how to fix the price alignment in the featured collection when one product name is bigger than the other. In my case, I´m having the problem just on mobile but it would be nice to know how to fix it in both cases.
Thanks.
Hi @OnlyS
Would you mind to share your store URL? Thanks!
Hi @OnlyS
You can try to add this code to Custom CSS in Online Store > Themes > Customize > Theme settings and check again
@media (max-width: 749px) {
.card__content .card__information {
display: flex;
flex-direction: column;
justify-content: space-between;
}
}
Actually, I can’t, because of my client rights.
Hi @OnlyS
Please change the cod to this to make it works for both mobile and desktop
.card__content .card__information {
display: flex;
flex-direction: column;
justify-content: space-between;
}
There we go! thanks!!