As you can see, the price of each product is not aligned. I want it positioned at the bottom. How can I achieve this?
@xeliporit12 , Can you kindly share you store url and password?
@BSSCommerce-B2B , i’ve sent it in private chat ![]()
Step 1. Go to Admin → Online store → Theme > Edit code
Step 2. Find the file theme.liquid.
Step 3. Add this code above
1 Like
You can add this code after
.card__content .card__information {
display: flex;
flex-direction: column;
justify-content: end;
}
.card .card__media img {
object-fit: contain;
}
.card__content {
flex-grow: unset;
}
.card__inner {
flex-grow: 1;
}
1 Like
Work like a charm, but I would like the white background if possible please ![]()
Of course, you can add more this code
.card__inner {
background: white!important;
}
Hope it helps ![]()
1 Like
You are the best man. I really appreciate that
One last question how can i remove this part from my page ?

@xeliporit12 , use this code
.footer__copyright {
display: none!important
}
1 Like
Thank you so much man! You’ve made it look amazing. I really appreciate your hard work ![]()


