I have roughly 200 tables on my site. All of them are set up the same way, so making a change on one of them, changes all of them.
It would be extremely time consuming to go through each table and give it a class name.
Is it possible to apply css, depending on the text within the table?
For example, my table would look like this:
<tr>
<th colspan="2">Table 1</th>
</tr>
Then what I want is: If th has text "Table 1" then apply this css:
th {
background-color: #b2591a;
}