Hey all, working on designing my new portfolio website in CSS, and trying to make it XHTML 1.1 compatible, so lotsa div's for me! Anyways, trying to get one div to be semi-transparent, but now everything I put in that div is transparent...and I want the text and pics to be 100% opacity, rather than the 50% that the div is set to. I've tried using a transparent png or gif to get the same result that I wanted, but those didnt work. The only other option I can think of is using absolute positioning, but that isnt all too cross-browser freindly.
#cntright{
height:355px;
width:130px;
border: solid 1px;
margin: 10px, 10px, 10px, 5px;
background: #348a43;
filter: alpha(Opacity=50);
text-align:left;
}
That is what the CSS for that portion looks like. If anyone can give me some help, it would really be appreciated. Basically, what im trying to do is have the background on the div below to appear through the upper one, but not dim the text or make the images within that div, or divs within the div, become transparent.
Thanks all