Table Background color?
I insert colun block, but my bgcolor on the table doesnt works. Stay transparency.
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td height="56" colspan="2" valign="middle" bgcolor="#FF7713" >[heading tag="h2" align="center" color="#000" color2="#FF7713"]Localização e Contato[/heading]</td>
</tr>
<tr>
<td width="2%">[icon type="icon-location"]</td>
<td width="98%">Km, xxxxx - SP</td>
</tr>
<tr>
<td>[icon type="icon-phone"]</td>
<td>(19) xxxx-9999</td>
</tr>
<tr>
<td>[icon type="icon-mail"]</td>
<td>[email protected]</td>
</tr>
<tr>
<td>[icon type="icon-link"]</td>
<td>www.xxxxx.com.br</td>
</tr>
</table>
Comments
this bgcolor declaration is invalid. Use this:
<td
height="56" colspan="2" valign="middle" style="background:#FF7713" ></td>