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.
Hello,
I gave up :|
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.