Hello,
Can you please advise on this:
I want to export my meeting pages (One bye one) to word or pdf document but on our company letter head, is it doable can I set a template that when I select export to word or even pdf it will print to our company letter head, we have very simple letter head two jpg images one each on header and footer.
Your help is this regard will be appreciated.
Here is how I did exactly that without plugin editing Space Tools / look & Feel / PDF Stylesheet:
@page {
/* Make the page portrait A4 */
size: 210mm 297mm;
/* Page number bottom left */
@bottom-left {
font-size: 12pt;
color: DarkGray;
content: counter(page);
}
}
/* Change first page footer */
@page:first {
/* Reserve space above */
margin-top: 150px;
/* Reserve space below */
margin-bottom: 100px;
/* Company background image */
background-image: url("https://confluence.company.com/download/attachments/19658987/background.png");
background-size: cover;
/* Sigfox logo top left*/
@top-left {
background-image: url('https://confluence.company.com/download/attachments/19658987/logo.png');
background-repeat:no-repeat;
background-position:left center;
}
@bottom-center {
font-size: 12pt;
font-style: italic;
color: rgb(69,0,204);
content: "Copyright © 2019. All rights reserved.";
}
/* Remove page counter on first page */
@bottom-left {
}
}
Have fun customizing this according to your needs.
@Muhammad FarhanConfluence Server provide ways to customize your PDF exports (guide here) but this is limited to Space export and doesn't not work for single page export.
If you want to customize single page export you might need to add some addon to your Confluence. One of them is,
Note: I am not associated with above mentioned plugin.
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.
Hello @DPKJ is there any other Plug in which you know can be use for
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have given this one a trial - https://marketplace.atlassian.com/apps/4909/content-exporter-word-pdf-html?hosting=cloud&tab=overview
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.