I tried to change the PDF export of a space so that the top place a logo and even though I try, it seems that confluence does not see any of my modifications, the code I'm using is identical to the example on page of documentation.
PDF Space Export Title Page
PDF Export Stylesheet
.fsTitlePage
{
margin-left: auto;
margin-top: 50mm;
margin-right: auto;
page-break-after:always
}
.fsTitle
{
font-size: 42px;
font-weight: bold;
margin: 72px 0 4px 0;
text-align:center;
}
Did you do it like this?
Go to Browse => Space Admin => PDF Layout => PDF Space Export Title Page and insert the following code:
<div class="fsTitlePage"> <img src="/download/attachments/590719/titlepage.png" /> <div class="fsTitle">Planning for Confluence 4.0</div> </div>
Then go to Browse => Space Admin => PDF Stylesheet => PDF Export Stylesheet and insert the following styles:
.fsTitlePage { margin-left: auto; margin-top: 50mm; margin-right: auto; page-break-after: always; } .fsTitle { font-size: 42px; font-weight: bold; margin: 72px 0 4px 0; text-align:center; }
To export the space go to Browse => Advanced => PDF Export and click export.
The custom styles defined in the PDF export stylesheet will be applied to all pdf exports, but the customizations of the PDF layout only take effect when exporting in the Browse Space section. They won't be applied when you export a single page over Tools => Export to PDF.
Thanks Buddy.
I like this works over Tools => Export to PDF =(
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.