Turn off hover on add to cart button
-
Hello, how can i turn off this “cart” icon hover on this button? I just dont want any hover here. Thanks. See image
Attachments:
You must be
logged in to view attached files.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
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;
}
Replace the colors as per your needs
Best Regards