Forums

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

Home Forums Other Image rollover using transparent .pngs Re: Image rollover using transparent .pngs

#87115

I’ve done this:


figure {
float: left;
margin: 0px;
padding: 0;
}
figure:hover {
background-color: #000000;
}
figure img:hover {
opacity: .35;
}

and

thanks so much for your help!