i think the error is just due to the coding that was used ..
filter  rogid  XImageTransform.Microsoft.Alpha(opa city=100);
-moz-opacity: 1.0;
which is something that is kinda too complex.
instead try using
highlightit img { opacity: 1 ; filter: alpha(opacity=100);}
highlightit img a:hover {opacity:.65; filter: alpha(opacity=65);}
also rearrange where u place the class for highlightit. instead of inside the a tag, place it inside the img tag
|