Home Forums Theme support Prestige Theme – Turn off rollover on an image Reply To: Prestige Theme – Turn off rollover on an image

Hi,

yes, it is possible, you can add this simple css code at the end of your style.css file to remove the effect:

#brand img {
    filter: url(data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter i…=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale);
    -webkit-filter: grayscale(0%);
}

This should remove the effect.