How can I reposition the Buy Now button on my site?

Hello,

how can I move the “Buy now” button next to the number field?

Screenshot: https://prnt.sc/1uo8cxu

Thank you very much for any help.

@danielcramer - yes it will need css, can you please share this page link?

hello @danielcramer

Please provide website url and if your store is password protected then also provide password So I will check and provide a solution here.

1 Like

welcome to shopify community.

please share your store URL and if your store is password protected then please give password too.

Thank you .

Hello,

The Site is:

squid-shop.de

Please add below code in bottom of assets/theme.scss.css file

.ProductForm {
position: relative;

}

button.ProductForm__AddToCart.Button {
width: auto;
position: absolute;
bottom: 0;
right: 0;

}

1 Like

Thank you! Worked perfectly!