Hi,
I am trying to make a div background colour transparent, now I have successfully made it transparent but it makes all other divs or anything else in that div transparent aswell, I currently have this CSS
.transparent_class {
filter:alpha(opacity=50);
-moz-opacity:0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
If anyone knows how I can just make the background colour div transparent and no other divs within that div transparent I would be very grateful, any help is much appreciated.
Thanks