datsau
I am using the Broadcast theme
I would like to align all my prices box so they are less messy
datsau
I am using the Broadcast theme
I would like to align all my prices box so they are less messy
You can use this css it will solve your issues
How to Add This to Shopify YourYour Theme:
Alternative (Edit Theme CSS Directly):
p.product-item__title {
height: 38px;
}
Hi @TBS2023
You can try to add this code at the bottom of your theme.css file and check again
.product-item,
.product-item .product-link {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.product-item .product-information,
.product-item .product-item__info { height: 100%; }