pdf adjust margin-left margin-right of form

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

pdf adjust margin-left margin-right of form

mabu
Hi,

Is it possible to adjust margin-left and margin-right of the form in the generated pdf.
I was able to adjust margin-top as follows:

@media print {
    .orbeon .navbar {
        margin-top: 200px;
    }
}

Martin
Reply | Threaded
Open this post in threaded view
|

Re: pdf adjust margin-left margin-right of form

Erik Bruchez
Administrator
Martin,

Try the following:

@page {
    margin-left: 200px;
    margin-right: 200px;
}

-Erik
Reply | Threaded
Open this post in threaded view
|

Re: pdf adjust margin-left margin-right of form

mabu
Erik, thank you. It is working!
Reply | Threaded
Open this post in threaded view
|

Re: pdf adjust margin-left margin-right of form

Erik Bruchez
Administrator
Good, thanks for confirming! -Erik