How can I keep the same Product Grid size regardless of the Product Title length, and whether or not it has variants? I’m using Empire Theme.

Thanks!

3 Likes

Hi, where should I start?

2 Likes

Hi @Wellanie

Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.

@Wellanie can you please share your website link?

The product grid looks pretty regular if you still talking about this site:
What you want to align, or?

this one

My bad, actually not the product grid, but how the “add to quote” button is aligned

there are also these variants options and dates that I want to remove.

@Wellanie please add this css to the very end of your theme.css file and check

shopify admin->online store->themes->edit theme code->assets->theme.css

.productitem--title {min-height: 50px;}
.template-collection select#rfq-variant-selector{display:none;}

I can’t see dates, but for other issues I’d go to Customize=> Theme Settings and paste this code into “Custom CSS”:

.productitem {
  display: flex;
  flex-direction: column;
}

.productitem > button {
  margin-top: auto;
}

.productitem > select { 
  display: none;
}

But can go to your stylesheet – assets/theme.css, paste at very bottom.

2 Likes

This is the easiest! thanks!

1 Like