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

Turn off hover on add to cart button

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #117695

    kodkodak
    Participant

    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.
    #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

Viewing 2 posts - 1 through 2 (of 2 total)