Simple black and white image hover effects CSS for blogger
Add a simple black and white hover effect to any of your images in your blogger blog this simple hover effect makes your image from original color converted into a black and white and when you point your mouse on it it will back on the original color of your image. Implementation Guide Login to your blogger dashboard and go to your template Copy the CSS code and add in your template before the]]></b : skin> (Don't forget to Backup your template) After you paste it, go ahead and save it. //====bedo=Hover effects====// #bedo a { text -align: center; display : block; color : #888; font -size: 11px; } #bedo a : hover { text -decoration: none; color : #222; } #bedo img { filter : grayscale ( 100%); - webkit -filter: grayscale ( 100%); filter : gray; opacity : 0.6; filter : alpha ( opacity=60); } #bedo img : hover { filter : grayscale ( 0%); - webkit -filter: grayscale ( 0%); filter : none; opacity : 1.0; filter : alpha ( opaci...