Forum Moderators: not2easy
you could drop another DIV inside of your transparent DIV and it will not be transparent... ive done this already and it works, but takes a little extra code.
I would very much like to see your code! :)
AFAIK the only way to make (what appears to be) the inner DIV not transparent when the outer DIV is transparent is to actually code the HTML so that the 'inner' DIV is in fact 'outside' the outer DIV (so it's not actually an 'inner' DIV), but then use CSS to position the 'inner' DIV on top of the outer DIV so that the 'inner' DIV looks like it is inside the outer DIV ...?!
one with a pattern in the background.
the second with a logo with the opacity
and the third with the text.
its a wild example, but it works.
there maybe a cleaner example, but this worked for my purposes.
<div style="background:#00ff00 url(pattern.jpg); width:475px; height:175px;">
<div style="width:460px; height:165px; background: url(images/logo.gif) center no-repeat; filter:alpha(opacity=85); -moz-opacity:.85; opacity:.85;">
<div style="color:#000000; font-weight:bold; z-index:50;">TESTing 1234
</div>
</div>
</div>