Is there a way to align the prices altogether? Some of the products have longer names which unaligned the price. Is it possible to line up all the prices to the same level on the homepage?
Website
You can add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
.card--standard>.card__content .card__information {
display: flex;
flex-direction: column;
justify-content: space-between;
}
It worked. Thank you so much.
