is there a way to put a conditional margin or padding for a header? or a table row data that has a long text custom field which has a lot of lines?
our current pdf right now is overlapping the header to the body section…
m
Michael McNamara
12/27/2022, 8:06 PM
You can adjust the header height in the body tag
<body header=“nlheader” header-height=“10%”
or you can remove that from the body and add a CSS style for the header
#page1 {
header:nlheader;
header-height:14%;
}