Home Forums WoodMart support forum Add to cart, wishlist hover effect – custom css Reply To: Add to cart, wishlist hover effect – custom css

#606542

Hello,

Please add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS.

.product-grid-item.wd-product.wd-hover-icons .wd-buttons .wd-action-btn {
    opacity: 0 !important;
    position: relative !important;
    transition: opacity 0.3s ease !important;
}
.product-grid-item.wd-product.wd-hover-icons:hover .wd-buttons .wd-action-btn {
    opacity: 1 !important;
}

Best Regards