Does anybody know how to put a border on the whole...
# advancedpdf
r
Does anybody know how to put a border on the whole page? I tried
<body header="nlheader" header-height="20%" padding=".75in .75in .75in .75in" size="Letter" border="1pt solid rgb(75, 123, 138)">
but the border is not showing.
n
I'll look for the template (it's been a while) but I think I accomplished this as a watermark image or background.
200iq 2
x
I did this on some of our custom forms by simply styling the body. I don't have any headers or footers in those particular templates, so I don't know how it will act with them.
Copy code
body {
         border: 5px double;
         border-color: #000000;
         margin: 10px 10px 10px 10px;
         }