Remove annoying cart hover effect
-
https://www.useloom.com/share/cb46de5fe818454685d132235e95248b
How do I remove this annoying cart button hover effect and replace it with a simple fill ?
Hello,
Which site do you want to remove the effect? Please provide the URL.
Best Regards
Hello,
Add this code to the Theme Settings > Custom CSS
body .woodmart-hover-standard .btn-add>a:hover span:not(.woodmart-tooltip-label),
body .woodmart-hover-standard .btn-add>a:focus span:not(.woodmart-tooltip-label){
-webkit-transform: translateY(0) translateZ(0);
transform: translateY(0) translateZ(0);
}
body .woodmart-hover-standard .btn-add>a span:not(.woodmart-tooltip-label) {
transition: all .2s ease;
}
body .woodmart-hover-standard .btn-add>a:hover span:not(.woodmart-tooltip-label),
body .woodmart-hover-standard .btn-add>a:focus span:not(.woodmart-tooltip-label){
color: white;
background-color: #a24495;
border-color: #a24495;
}
Best Regards