I have a one cell table that has a large background image. The cell height/width are set to the image so it will not tile. I then have a one cell table within that cell with a background color with text. I'd like to make the cell bgcolor somewhat transparent so the image behind it shows. Here's the code.
<table width="500" height="400" cellpadding="0" cellspacing="0" border="0">
<tr>
<td background="images/bg_image.gif">
<table width="400" height="250" cellpadding="3" border="0" cellspacing="0">
<tr>
<!---- this is the cell that I need to be transparent --->
<td bgcolor="#667788">
text goes here
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="500" height="400" cellpadding="0" cellspacing="0" border="0">
<tr>
<td background="images/bg_image.gif">
<table width="400" height="250" cellpadding="3" border="0" cellspacing="0">
<tr>
<!---- this is the cell that I need to be transparent --->
<td bgcolor="#667788">
text goes here
</td>
</tr>
</table>
</td>
</tr>
</table>