- Code: Select all
<style>
img {
border: 0;
filter:alpha(opacity=80);
-moz-opacity: 0.80;
opacity: 0.80;
}
img:hover{
filter:alpha(opacity=95);
-moz-opacity: 0.95;
opacity: 0.95;
}
</style>
The prob is that this code overwrites EVERY image on my page. This is fine...but i want one image to be exempt from this rule. Any ideas how to do that?

