cfpdf font size
All,
I using the "addheader" part of cfpdf (which works fine) and am trying to increase the font size of the header text. I have successfully been able to change the font family to Arial and make the text bold, but cannot increase the size. I was able to use <cfsavecontent> like so:
<cfsavecontent variable="headerText">
<body style="font-family:Arial">
<b>Hello World</b>
</body>
</cfsavecontent>
<cfpdf
action="addheader"
source="mergedDoc"
name="myPDF"
showonprint="yes"
overwrite="yes"
text="#headerText#"
opacity="10"
topmargin="0.25"
rightmargin="5">
<cfcontent type="application/pdf" reset="yes" variable="#toBinary(myPDF)#">
I've tried various methods, but it will not increase the size. Ideas?
