aab4f66a2aca5293f3536cc1d1438b17d2b09dfd
tdreszer
  Thu May 5 16:14:15 2011 -0700
A large set of tiny changes.  These fix a lot of discrepencies with bgcolor and font color declarations which were tripping up docttype 4.01.
diff --git src/hg/hgc/t2g.c src/hg/hgc/t2g.c
index 36c83c4..1bcb315 100644
--- src/hg/hgc/t2g.c
+++ src/hg/hgc/t2g.c
@@ -89,32 +89,32 @@
 	"are highlighted in bold</small>");
     webPrintLinkTableStart();
 
     struct slName *listEl = seqList;
     while (listEl != NULL)
         {
         char* parts[2];
         chopString(listEl->name, "|", parts, 2);
         char* seqId    = parts[0];
         char* seq      = parts[1];
 
         if (hashLookup(seqIdHash, seqId)) 
             printf("<TD BGCOLOR=\"#%s\"><TT><B>%s</B></TT></TD>",
 		HG_COL_TABLE, seq);
         else
-            printf("<TD BGCOLOR=\"#%s\"><TT><FONT COLOR=\"#AAAAAA\">%s"
-		"</FONT></TT></TD>\n", HG_COL_TABLE, seq);
+            printf("<TD style='background-color:#%s; color:#AAAAAA;'><TT>%s"
+		"</TT></TD>\n", HG_COL_TABLE, seq);
         webPrintLinkTableNewRow();
         listEl=listEl->next;
         }
 	webPrintLinkTableEnd();
     printTrackHtml(tdb);
 
     slFreeList(seqList);
     freeHash(&seqIdHash);
 }
 
 void doT2gDetails(struct trackDb *tdb, char *item)
 /* text2genome.org custom display */
 {
 int start = cgiInt("o");
 int end = cgiInt("t");