Home Forums WoodMart support forum Turn off hover on add to cart button Reply To: Turn off hover on add to cart button

#117719

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