Home › Forums › WoodMart support forum › problem in showing the category in Buttons on hover style › Reply To: problem in showing the category in Buttons on hover style
November 28, 2023 at 5:23 pm
#516477
Hung Pham
Keymaster
Hi av_admin_1984,
Thanks for sharing details.
It caused by the Custom CSS code that hide Add to cart button, when I removed it (without affect to live site), categories show well.
If you want to remove Add to cart button, add the below Custom CSS code to Theme Settings > Custom CSS > Global Custom CSS.
.product-grid-item.product.wd-hover-buttons-on-hover .product-element-bottom {
margin-bottom: 0;
}
.product-grid-item.product.wd-hover-buttons-on-hover:not(:is(.quick-shop-shown,.wd-loading)):is(:hover,.wd-variation-active) :is(.product-element-bottom,.wd-product-grid-slider-pagin) {
transform: none;
}
.product-grid-item.product.wd-hover-buttons-on-hover:not(:is(.quick-shop-shown,.wd-loading)):is(:hover,.wd-variation-active) .product-element-top {
clip-path: none;
}
Regards,
- This reply was modified 1 year ago by Hung Pham.