Disable hover effect on categories
-
I would like to disable the hover affect shoeing how many products/categories are under each category. Is this possible?
Thanks
Hello,
Thank you for the question.
You can use this code snippet to hide products count on hover. Add it to the Custom CSS section in Theme Settings
.cat-design-alt:hover .products-cat-number {display: none;}
And here is a code to disable hover effect completely
.cat-design-alt .category-link {background-color: transparent;}
.cat-design-alt:hover .products-cat-number {display: none;}
.cat-design-alt:hover .product-category-thumbnail {opacity: 1;}
Regards