Click to See Complete Forum and Search --> : Transparency CSS


Noodle7
09-13-2006, 05:12 AM
Hi


Please help I am trying to create a white block which enables you to see the background image ...

It works fine in mozilla but not in IE ... this is the CSS that I have use in the same element
:

filter: alpha(opacity = 60);
opacity: 0.6;




Apparently filter : alpha works for IE but not in my case ... any one got any ideas??

Noodle7
09-13-2006, 07:32 AM
#nav .textblock {
position: absolute;
top: 45px;
left: 450px;
width: 200px;
opacity: 0.6;
filter: alpha(opacity=60);
-moz-opacity: 0.60;
-khtml-opacity: 0.6;
background: white;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
font-style: bold;
} sorted it out thanks :)