Jmcdo
07-01-2006, 12:08 PM
Hey, Im trying to fit a transparancy code into the html of my page. I tried it using insert shapes in front page and changing the transparency but as i expected, it didnt work on firefox, opera or anything apart from IE. I then resorted to CSS. I used this style function for each cell in the table.
CSS
.transbox {
filter:alpha(opacity=50);
-moz-opacity:0.5;
opacity: 0.5;
}
HTML
<div class="transbox">
table info
</div>
i messed about with this for a while and it seems to work, the only problem is it effects the text in the table also. Is there anyway of altering the code so it doesnt effect the text and the text in the table keeps its original formatting? Im trying not to use background .png images!
JM
CSS
.transbox {
filter:alpha(opacity=50);
-moz-opacity:0.5;
opacity: 0.5;
}
HTML
<div class="transbox">
table info
</div>
i messed about with this for a while and it seems to work, the only problem is it effects the text in the table also. Is there anyway of altering the code so it doesnt effect the text and the text in the table keeps its original formatting? Im trying not to use background .png images!
JM