The table had given a specific background color to each table cell, and instead of using <th> where appropriate, it was using <td> for every cell and using background color to distinguish the two types of cells. I removed the color assignments, and changed cells that should be <th> to that. This made them boldface instead of changing the background color.
The table had given a specific background color to each table cell, and instead of using
<th>
where appropriate, it was using<td>
for every cell and using background color to distinguish the two types of cells. I removed the color assignments, and changed cells that should be<th>
to that. This made them boldface instead of changing the background color.