Re: CFDOCUMENT
I tried this method. In fact I defined all my CSS between head tags as I found
importing the style sheet yielded mixed results on my production server. Thanks
for trying to help.
<!--- Generate PDF report --->
<cfdocument attributeCollection="#pdfdef#">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CACF</title>
<!--- Link to Waivers.css for formating --->
<style type="text/css">
p {
width: 600px;
text-indent: 0.25in;
text-align: justify;
font-family: Verdana, Arial;
font-size: 11px;
line-height:2em;
}
td {
font-family: Verdana, Arial;
font-size: 11px;
}
th {
font-family: Verdana, Arial;
font-size: 14px;
}
.cliHead {
font-family: Verdana, Arial;
font-size: 12px;
color: #003366;
font-weight: normal;
}
.civilHead {
font-family: Verdana, Arial;
font-size: 9px;
font-style: italic;
letter-spacing: 3px;
}
.cliHeadBold {
font-weight: bold;
}
.labels {
font-style: italic;
font-weight: bold;
font-size: 9px;
}
.disclaimBox {
font-weight: bold;
text-indent: 0px;
border: thin solid #000000;
padding: 2px;
line-height: normal;
}
</style>
</head>
<body>......
|