I need to enter fractions and was successful with the following html for the fraction 15/25. "<sup>15</sup>⁄<sub>25</sub>";
Then I changed css to have have the grid appear with a charcoal background with white text to make it consistant with the other tables in the program. I used the following css:
div.pq-grid * {
color: #FAF0E6;
background-color: #666666;
font-weight:bold;
font-style:normal;
font-family: "Arial";
line-height:18px;
text-shadow:none;
}
Now the fractions no longer appear correct. The numerator and denominator are white text a black background (file attached). All the other entries in the grid appear correctly.
One way to solve my problem is to apply the css changes to the the 'th' records, but that does not seem to work. Do you have any suggestions on how to get the fractions to appear correctly?
eLearnster