I'm having the following problem. Wordpress generates following code based on a String. The String accepts tag's but not " ". So I can't give it a class name or id. Now I need a specific mark-up for some cells, I defined that mark-up in a css file :
<td class="decoded_<i>1_year_warrenty</i>"> ☑ </td>
Now I need to make the color of the ☑ white. Following code works for classes without the tag
.decoded_<i>1_year_warrenty</i> {
color: white;}
Is there a method to let the browser know that it's part of the class name and not a tag.