Removing the header section the pdf

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

Removing the header section the pdf

javaudvikling
Hi Orbeon,

Is there some config parameter to remove the header section in the pdf document without using a pdf template definition. if not, what is the easiest way to do this in orbeon..?

regards
Balathaan
Reply | Threaded
Open this post in threaded view
|

Re: Removing the header section the pdf

Erik Bruchez
Administrator
There is no parameter specifically for the PDF mode.

You can hide it using custom CSS which applies only to `@media print`. Something like:

@media print {
    .orbeon .navbar { display: none }
}

-Erik