hello,
i have an image i create with some shadow and when i hover over it i want to set the opacity to 0.8 but..
when i do this the shadow fills in black as i am using the
Code:
filter:Alpha(opacity=50);
i searched like hell and found that you can fix the PNG24 issue in IE by using
Code:
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/Images/login_loginpress.png', sizingMethod='crop');
background-image:url(/Images/login_loginpress.png) 0 0 no-repeat;
so i have put it in and it hasn't worked.
with this i have also tried
-the src with no speech marks.
-just the image name not the whole path.
-in the html as a <img> and a <div>
-with and with out the '0 0 no-repeat;'
but it still doesn't work.
can anyone show me how it should look in the html side and the css side.
i want to try not to use php or java/jquery but if it is needed then i will.