I'm trying to make an image Grayscale by default an on hover fade into color. I'm having issues with it taking into consideration that I want the hover to only associate to images.
/* MAKE ALL FEATURED IMAGES BLACK AND WHITE */
.banner-wrap .featured-thumbnail {
width: 270px !important;
height: 149px !important;
}
.featured-thumbnail img{
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
}
.featured-thumbnail img:hover{
filter: none;
-webkit-filter: grayscale(0%);
}