Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Image hover transparancy problem Reply To: Image hover transparancy problem

#148763
matikdesign
Participant

thats because i was just doing the hover strip by right click inspect element on firefox, so its not permanent…

i tried a bunch of solutions, maybe 10 that worked on the strip but none of them work on the bio images, as i stated i think there is some kind of conflict that is preventing them from accepting hover commands?

heres one solution i just googled that works on the strip and not on the images, right clicking inspect element and putting below the css of the strip image….

opacity:0.4;

filter:alpha(opacity=40); /* For IE8 and earlier */

}

img:hover

{

opacity:1.0;

filter:alpha(opacity=100); /* For IE8 and earlier */

}