|
To fix issue #1 (mentioned in my last post), remove the quotes around
the color attribute of the font tag (and maybe quotes around all
other attributes within tags? I haven't checked).
So, whereas this note
<font color="ff0000">SAMPLE TEXT</font>
becomes this when you open HTML Calendar again,
<font color=
>SAMPLE TEXT</font>
the following note formats correctly as displaying in color.
<font color=ff0000>SAMPLE TEXT</font>
|