Results 1 to 2 of 2

Thread: no table cell color in firefox

  1. #1
    Join Date
    Aug 2009
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default no table cell color in firefox

    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

  2. #2
    Join Date
    Jul 2009
    Location
    Binus University
    Posts
    472
    Thanks
    78
    Thanked 21 Times in 21 Posts

    Default

    You forget to add # in front of the color code

    this is my code
    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
    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

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •