Home Forums WoodMart support forum Remove annoying cart hover effect

Remove annoying cart hover effect

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #102092

    pogopie
    Participant

    https://www.useloom.com/share/cb46de5fe818454685d132235e95248b

    How do I remove this annoying cart button hover effect and replace it with a simple fill ?

    #102146

    Hello,

    Which site do you want to remove the effect? Please provide the URL.

    Best Regards

    #102148

    pogopie
    Participant
    #102177

    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

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