tiamat2012
Programmer
Does anyone know how to do it? I'm using the current code to do a rollover, but I would like the image to change again when they click on the picture.
The filter just allows me to have transparency in IE with png files.
I tried a:active img.menu but that didn't work either, does anyone know how I could do it? I would have to change the style if I were to use javascript, but I would rather not use javascript in the first place.
-Kerry
Code:
a img.menu
{
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/UNhome.png');
border-style:none;
}
a:hover img.menu
{
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/HOVhome.png');
}
The filter just allows me to have transparency in IE with png files.
I tried a:active img.menu but that didn't work either, does anyone know how I could do it? I would have to change the style if I were to use javascript, but I would rather not use javascript in the first place.
-Kerry