Can I customize the header section when exporting the PDF?
I want to reduce it (space) because there is so much space on each page.
@이유진(Eugene) Welcome to the Atlassian community
You will need to set the page margins https://confluence.atlassian.com/doc/customize-exports-to-pdf-190480945.html
To set the margins independently, edit the @page
rule like this:
@page
{
margin-top: 2.54cm;
margin-bottom: 2.54cm;
margin-left: 1.27cm;
margin-right: 1.27cm;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was just looking into customizing the PDF exports this week.
You can find the PDF export configuration page here:
https://<<tenant>>.atlassian.net/wiki/spaces/<<space-name>>/settings/look-and-feel/pdf-export
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.