> -----Original Message-----
> From: Dan [mailto:[EMAIL PROTECTED]]
>
<snip>
> Help!  I have a simple problem I hope.  The below html works fine in IE but
> the bgcolor doesn't work in Netscape.  However, if I remove the
> background="image.jpg" then the bgcolor works.  Any suggestions?
>
> <table>
>   <tr>
>     <td background="image.jpg">
>       <table>
>         <tr><td bgcolor="FFCC00">....
>
> Thanks
>

You need to add an empty background attribute to the inside cell. I know it
sounds weird but there it is. Examine the following code:

<table width="100%">
<tr>
        <td background="apache_pb.gif">
        <table width="50%">
        <tr>
                <td bgcolor="FFCC00" background="">
                <p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p>
                </td>
        </tr>
        </table>
        </td>
</tr>
</table>

HTH
-- Bruce

------------------------------------------------------------------------------
To unsubscribe, send a message to [EMAIL PROTECTED] with 
'unsubscribe' in the body or visit the list page at www.houseoffusion.com

Reply via email to