Price alignment on featured collection

Topic summary

A user encountered misaligned prices in their featured collection when product names varied in length, affecting both mobile and desktop displays.

Issue Details:

  • Price alignment broke when one product had a longer name than others
  • Problem visible on both mobile and desktop views
  • User unable to share store URL due to client restrictions

Solution Provided:

  • Initial CSS code fixed mobile alignment but not desktop
  • Final working solution applied flexbox properties to .card__content .card__information:
    • display: flex
    • flex-direction: column
    • justify-content: space-between

Outcome:
The CSS fix successfully resolved the alignment issue across all devices. The user confirmed the solution worked perfectly.

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

I need to know how to fix the price alignment in the featured collection when one product name is bigger than the other. In my case, I´m having the problem just on mobile but it would be nice to know how to fix it in both cases.

Thanks.

1 Like

Hi @OnlyS

Would you mind to share your store URL? Thanks!

Hi @OnlyS

You can try to add this code to Custom CSS in Online Store > Themes > Customize > Theme settings and check again

@media (max-width: 749px) {
.card__content .card__information {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
}
1 Like

Actually, I can’t, because of my client rights. :disappointed_face:

Hi! thanks for the answer, it works perfectly on mobile, but not in desktop.

Hi @OnlyS

Please change the cod to this to make it works for both mobile and desktop

.card__content .card__information {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

There we go! thanks!!