I've just started designing a new site and it all looks nice, has transparent tables etc using CSS. The only problem I've come across is all my images are also transparent
.
I managed to get it so the text isn't transparent.
I've tried lots of things for images like setting opacity to 100% in the img tag but it doesn't seem to make any difference
I tried
but it doesn't take any notice 
I was thinking of trying the transparent png way but last time I did that it seemed a bit slow.
altho I did get it working with IE
Wonder if it's possible to do it using java or something

I managed to get it so the text isn't transparent.
I've tried lots of things for images like setting opacity to 100% in the img tag but it doesn't seem to make any difference

Code:
background-color: #DBDDE9;
filter: alpha(opacity=75);
-moz-opacity: 0.75;
opacity: 0.75;
Code:
img {
filter: alpha(opacity=100);
-moz-opacity: 1;
opacity: 1;
}

I was thinking of trying the transparent png way but last time I did that it seemed a bit slow.

Wonder if it's possible to do it using java or something