(Squarespace) Move Add to cart under Quick view

To move Add to Cart under Quick View, like this.

You can use this code to Custom CSS box.
If code doesn’t work, you can comment below, message or send me an email.

section.plp-grid-add-to-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity .3 sease-in;
}
div.grid-item:hover section.plp-grid-add-to-cart {
    opacity: 1;
    transition: opacity .3 sease-in;
}

Result

If you have Variant Dropdown, it will appear like this.

1 Like