Align woocommerce add to cart button

Hi,

how can i align the add to cart button to the bottom in product archive?

Thanks

1 Like

Any help in accomplishing this?

Hi,

yes i need help because i can’t align the add to cart button.

Thanks

You can add some custom CSS:
root button {
margin-left: calc(50% - 100px);
}
where “100px” is 1/2 of button width.
This is for center alignment.

Hi,

thanks for your help, i didn’t explained well (excuse my english), in the product archive page i want all the add to cart button aligned at same level, despite different content size.

Thanks in advance

jb

Hi @Bandos ,

add margin-top: auto; to the button
or
justify-content: space-between; to .bricks-element-woocommerce-products .product.

Best Regards,
timmse

Thank you @timmse

this worked:

.repeater-item {
justify-content: space-between
}

Thank you all,

it worked perfectly.

Thanks again