Skip to main content
Inspiring
April 20, 2012
Question

css in cfdocument

  • April 20, 2012
  • 1 reply
  • 1843 views

Hi

my code below is working fine except the css didn't work if i have scope="row" in report.cfm page.  if  i removed that line, then the front size worked fine, otherwise, it was small.  I always have td scope in the cfm page with css with those style and it worked fine, but don't know if scope has something to do with cfdocument?

thanks

========================

report.cfm

<cfif form.submit neq "">

<cfsavecontent vairable="session.report">

<td scope="row">My Report</td>

</cfsavecontent>

#session.report#

</cfif>

<a href=pdf.cfm">view pdf</a>

==================

pdf.cfm

<cfset request.theReport = session.report />

<cfdocument format="pdf" orientation="landscape" marginRight=".5" marginLeft=".5">

<style>

body, table, th, td {font: normal normal normal 15px/normal, Arial;

</style>

<cfoutput>

#request.theReport#

</cfoutput>

</cfdocument>

This topic has been closed for replies.

1 reply

BKBK
Community Expert
Community Expert
April 23, 2012

Include all the HTML table tags, table, tr, th, and so on, in report.cfm.

kt03Author
Inspiring
April 23, 2012

It just an example, but ofcouse i have all table tags in my report.cfm

BKBK
Community Expert
Community Expert
April 24, 2012

Could you then reproduce the code as close as possible to the version in which the error occurs? Just to rule out the obvious. I cannot tell you the number of threads I have participated in, where more than 20 posts had passed before the original poster realized he had simply put a dot in the wrong place.