Product cards alignment

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 :slightly_smiling_face:

@xeliporit12 ,

Step 1. Go to Admin → Online store → Theme > Edit code

Step 2. Find the file theme.liquid.

Step 3. Add this code above


It worked! Thank you so much. Can you help me center the image please?

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;
 }

Work like a charm, but I would like the white background if possible please :slightly_smiling_face:

Of course, you can add more this code

.card__inner {
  background: white!important;
}

Hope it helps :heart_eyes:

You are the best man. I really appreciate that :blush: One last question how can i remove this part from my page ?

xeliporit12_2-1725100924078.png

@xeliporit12 , use this code

.footer__copyright {
  display: none!important
}

Thank you so much man! You’ve made it look amazing. I really appreciate your hard work :blush: