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!
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!
Hi, where should I start?
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?
this one
@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.
This is the easiest! thanks!