You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
how do I change document title attributes for PDF export? I tried something like this in PDF export stylesheet (space stylesheet, not global);
#title-text a { font-size: 150%; text-align: center; }
but it doesn't work. There's very little info available on selectors available. Maybe #title-text isnt right thing?
Confluence server 6.15.7
Got it!
...
/* Title */
h1:first-child {
text-align: left;
font-size: 34pt;
font-variant: small-caps;
font-weight: bold;
padding: 200px 0px 100px 0px;
}
...
I'm having trouble with this fix. When the Confluence page I export has a Heading 1, then that heading ALSO receives the h1:first-child styling. How can I divorce the page's title from Heading 1 -formatted text?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found your updated answer elsewhere!
/* Title */
h1.title-header {
text-align: left;
font-size: 34pt;
font-variant: small-caps;
font-weight: bold;
padding: 200px 0px 100px 0px;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Toomas,
Looks like we have the same issue : https://community.atlassian.com/t5/Confluence-questions/Export-to-PDF-and-headers/qaq-p/1201186
Did you find a solution?
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.