Checkout getting stuck on "Continue to payment"

Hi,

I have encountered a problem with a new website. Somehow the checkout process gets stuck on “Continue to payment”, clicking on the button does nothing. The only way to continue the checkout process is to reload the page manually. Strange indeed. Before this step and after everything works as expected. No errors or messages in console.

https://hungry-shockley-930ccd.netlify.app/product/the-chair

Running Nuxt latest version, Snipcart version 3.2.0

Any idea what’s going on here?

Hi @henrikhansson !

I’ve just taken a look at your website, and it appears to be a CSS conflict. You apply the following properties to the input, textarea selectors, which causes a checkbox to overlap with the button:

resize: none;
width: 100%;
height: 100%;

Changing the specificity of these selectors so they don’t interact with the cart should fix the issue.

Let me know if that helps,

Cheers!

2 Likes

Good catch, fixed the problem. Thank you!