https://www.bigbrattboutique.com/collections/tops
How do I get this effect when you hover over the product image? I like how the quick view and border is transparent then shows up when you hover over product.
A user wants to hide the “Add to Cart” button and product border by default, making them appear only on hover over product images in their collection page.
Proposed Solution:
.product-item__hover-container and .product-item__hover-action-wrap elements on hoverTechnical Details:
!important flags to override existing stylesopacity: 0 and visibility: hidden for the action wrapperStatus: Solution provided but not yet confirmed as tested or working by the original poster.
https://www.bigbrattboutique.com/collections/tops
How do I get this effect when you hover over the product image? I like how the quick view and border is transparent then shows up when you hover over product.
Hi,
Go to your online store -edit code → base.css file and paste this code in the end of file
.product-item__inner:hover .product-item__hover-container, .product-item__inner:focus-within .product-item__hover-container {
opacity: 0 !important;
}
.product-item__inner:hover .product-item__hover-action-wrap, .product-item__inner:focus-within .product-item__hover-action-wrap {
opacity: 0 !important;
visibility: hidden !important;
}