CFDocument and small caps
I have a paragraph tag inside a CFDOCUMENTITEM tag in a CFDOCUMENT tag with a CSS style of "...font-variant:small-caps;..." but the text isn't being rendered as small caps. I'm getting the problem with or without FONTEMBED and also if the small caps paragraph is in the body of the document instead of in the CFDOCUMENTITEM tag. Any suggestions?
Running ColdFusion 9.0.1.274733, Standard edition, on Windows 2003 (5.2).
Code...
<cfdocument
format="PDF"
margintop="1.1"
marginbottom="1.1"
marginright="0.4"
marginleft="0.4"
orientation="portrait"
unit="in"
backgroundvisible="yes"
fontembed="yes"
filename="..."
overwrite="yes"
>
<cfdocumentitem type="header">
<p style="height:20px"> </p>
<p style="
border : 2px solid #557799;
font-family : Georgia, Verdana, Arial, Helvetica, sans-serif;
font-size : 13pt;
font-weight : bold;
font-variant : small-caps;
color : #FFFFFF;
background-color : #7799BB;
padding : 5px 0px 3px 0px;
margin : 0px;
text-align : center;
vertical-align : middle;
">Sample Text</p>
</cfdocumentitem>
.
.
.
