Align prices on collection page - Broadcast

Hi

I would like my prices to be aligned on the collection page and also on the product recommendation section

I am using the Broadcast Theme

www.thebodyshop.co.nz

password: mimeey

You can try to add this code to Custom CSS in Theme settings and check

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

1 Like

Hi @TBS2023 ,
Go to Online Store > Themes > Actions > Edit Code > theme.css Add below code at the bottom of theme.css file

.grid-item.product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

Hi @TBS2023
Go to Online store >> Themes >> Customize >> Click on Settings icon to the left >> Scroll down to the bottom and paste it to the custom CSS tab.
.grid-item.product-item {
display: flex;
flex-direction: column;
justify-content: space-between;
}