My FireFox CSS Validator is stating the following:
Error in parsing value for property 'filter'. Declaration dropped.
Line 64 and Line 69 (in bold, below):
ul.addtoany_list a img{
opacity:.6;
-moz-opacity:.6;
filter:alpha(opacity=60);
}
ul.addtoany_list a:hover img, ul.addtoany_list a.addtoany_share_save img{
opacity:1;
-moz-opacity:1;
filter:alpha(opacity=100);
}
I'm assuming this needs to be a fix by the developer, seeing that it's in his CSS stylesheet? Anyone?
http://wordpress.org/extend/plugins/add-to-any/
Also, on my local wamp (where I'm developing the theme), the share/save button doesn't produce a little dialogue box full of icons like it does on the dummy site I have live. When I click on the share/save icon it just acts as a link and takes me to the AddToAny site.
Does anyone know what is causing this?
That CSS error in Firefox is more of a warning than an error as it doesn't affect the browser or page rendering. The declaration itself is for Internet Explorer compatibility.
See: http://wordpress.org/support/topic/264886