Hi there,
Does anyone know the code to make the Add To Cart Button sticky on scroll for the Studio Version theme?
Thanks,
Hi there,
Does anyone know the code to make the Add To Cart Button sticky on scroll for the Studio Version theme?
Thanks,
Hi @PPUSA ,
You can try one of these apps from here
https://apps.shopify.com/search?q=Add%20To%20Cart%20Button%20sticky
We’re trying to avoid apps as they slow down the site too much.
Hi, so you can try following this article
https://www.shopify.com/partners/blog/112052742-how-to-create-a-sticky-add-to-cart-button-on-scroll
Use Below CSS
button.product-form__submit.button.button--full-width.button--secondary {
display: block;
position: fixed;
bottom: 0;
left: 0;
z-index: 100;
width: 100%;
}