Hi! Do you have any good tips how to make containers transparent so i could see the background through it. I found some help from W3Schools but it didn´t work in FF and also IE threw up the active X shitty warning on me. Or could i do the transparency in Photoshop. Thanks in advance. HDaddy
This might be what you're looking for: #container { opacity: .5; filter: alpha(opacity=50); } Code (markup):
That´s just what i tried...but it didn´t work on FF and IE warned about active x components. Actuallly i didn´t have that opacity: .5; thing in the code, just the filter: alpha(opacity=50); thing. But anyway it did not work.
avoid filters like the plague. they are non-standard. background: transparent; CSS will do this for you
Thanks Clive, now it works also in FF. But still it´s blocking it in IE. is there anything i can do, so it doesn´t block it or should i just trust the people to allow the activeX stuff.