Reputation: 195
Currently while generating PDF , PDF is displaying Form Title. Is there any way it will also display Form Description of the same form ?
Form Description I am referring is as per bellow pointer :
Upvotes: 0
Views: 146
Reputation: 195
I have to add following class in form-runner-orbeon.css ( @media print { })
.fr-top .fr-form-description { color: black }
.fr-top .fr-form-description { display: block }
Upvotes: 0
Reputation: 7857
You need to change the CSS used. By default, there is a rule like this:
@media print {
.fr-form-description { display: none; }
}
You would have to add a stronger (or placed after) rule doing for example:
@media print {
.fr-form-description { display: block; }
}
Upvotes: 3