Log in

View Full Version : no table cell color in firefox



sepunx2
09-11-2009, 02:22 PM
Hi!
I have a table on my webpage. Every second line is colored orange. It works on safari, opea and IE, but in Firefox, the orange color is simply gone. Is there maybe a workaround, or have I done something wrong in my coding?
here is the link:
http://www.falcongaterock.com
Thank you

davelf
09-12-2009, 08:16 AM
You forget to add # in front of the color code

this is my code


<tr bgcolor="#CC9900">
<td height="30">&nbsp;&nbsp;&nbsp;&nbsp;2009.sept.19.</td>
<td height="30">&nbsp;Budapest @ Dürer Kert</td>
<td height="30">&nbsp;&nbsp;&nbsp;Punk vs metal vs hardcore</td>
</tr>


this is your code


<tr bgcolor="CC9900">
<td height="30">&nbsp;&nbsp;&nbsp;&nbsp;2009.sept.19.</td>
<td height="30">&nbsp;Budapest @ Dürer Kert</td>
<td height="30">&nbsp;&nbsp;&nbsp;Punk vs metal vs hardcore</td>
</tr>


firefox can not read CC9900, you should add #CC9900
safari can read CC9900.

good luck