How can I uniformly position product titles on my webpage?

How do i make the positioning of every product title the same position on the page? Right now it is not even one is too high.

store url: https://c1e46d.myshopify.com/collections/all

Hi [email removed]Suoshie,

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file component-card.css.

Step 3: Paste the below code at bottom of the file → Save

.card--card, .card--standard .card__inner{
height:250px !important;
overflow:hidden
}

Hope my solution works perfectly for you!

Best regards,

Victor | PageFly

Hello @suoshie

I would like to give you the recommendation to support you so kindly follow steps below:

  1. Go to your Online store > Themes > Edit code
  2. Open your theme.liquid file
  3. Paste the below code before

I hope the above is useful to you.
Best regards,
GemPages Support Team

THANK YOU! IT WORKED :heart:

Actually i am looking at mobile version and the product images are weirdly cropped. Can you help me fix this mobile problem?

unfortunately this dosent work.

here is the shop preview link: https://hx76tt6klxtrgyaf-71160791356.shopifypreview.com

Please help me fix the images on mobile so that they arent cropped. Thank u.

You can add

@media(max-width:767px){
.card--card, .card--standard .card__inner{
height:180px !important;
overflow:unset
}
}

1 Like

that worked thank you. How do i make the stock photos smaller so they dont get cropped?

You can try

@media screen and (max-width: 749px){
.card__badge.top span img {
transform: translateY(-10px);
max-width:70px !important
}
}