How can I align the 'Add to Cart' button on all products?

Hello I need to fix the alignment of add to cart button in my store infinitycosmetics.it

I have some product with 1 line title, some other with 2 lines title, some with variant and other without varian.

I would like to set add to cart button at the same position for all product.

Thanks

Hi @INFINITYCOS , if this is the result you’d like to get

Go to edit code > assets > theme.css and add this:

.indiv-product {
    height: 350px;
}

@INFINITYCOS

yes, pleas try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.min.css ->paste below code at the bottom of the file.
.indiv-product .hp-title {
    min-height: 120px;
}
2 Likes

Unfortunately it doesn’t work

Thanks a lot! And how can I space more products? The add to cart button is too near to the under product

1 Like

@INFINITYCOS

yes, pleas try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.min.css ->paste below code at the bottom of the file.
.product-grid .indiv-product-wrapper {margin-bottom: 30px;}
1 Like