Grayscale Filter to Logo with original color on hover

Not sure if widget has this option, but I can’t find it so I wrote this CSS.
First you need to set this option

Next, use CSS code

div.eapp-logo-showcase-logo-inner:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
}

Hi, is there a CSS snippet to change from custom color filter to fullcolor logo?

@B.S which CSS code you used to set custom color? Or can you provide link to page?

Hi @tuanphan , I used this setting:

It should be

div.eapp-logo-showcase-logo-inner:hover {
    filter: invert(0) !important;
    -webkit-filter: invert(0) !important;
}

thanks. but no, not really. It turns to black only.

Hi there, @B.S :waving_hand:

Please try to use the code below and let me know if it helped :slightly_smiling_face:

.eapp-logo-showcase-logo-inner:hover,
.eapp-logo-showcase-logo-inner:hover img {
  filter: none;
}

Alright! Thx brother

You’re always welcome :wink: