Hi,
I am working with Seroy version R2 2.1.2-build 315 on Mac OS X with Java version 1.4.2-38.
I am using a field to contain html including CSS and then displaying the rendered html in a label or html_area. I seem to have found that I must use lower case CSS class names to make it work.
For example, using the class name “headercase” as in the sample below everything works fine and the text in the label is bold, underlined.
.headercase { font-family: Arial, Helvetica, Courier, sans-serif; font-size: 12pt; font-weight: bold; text-decoration: underline; }Hello there |
However, if I change it to “headerCase” as below it no longer works and the text in the label in not bold, underlined.
.headerCase { font-family: Arial, Helvetica, Courier, sans-serif; font-size: 12pt; font-weight: bold; text-decoration: underline; }Hello there |
Strangely I can use “headerCase” in the CSS style section with the HEAD and lowercase “headercase” in the TD tag and this works as follows:
.headerCase { font-family: Arial, Helvetica, Courier, sans-serif; font-size: 12pt; font-weight: bold; text-decoration: underline; }Hello there |
It look me a long time to work out what was going on here and I wonder if anyone else has the same issue.
Best regards,
Colin