I would like to export my Confluence pages with the Title of the page suppressed.
For example, if the page title is "<####> My Documentation", where <####> is a variable part. During exports, "<####> My Documentation" is first printed and then the rest of the content is present and I do not want this title to be printed.
I came across the following PDF Export Stylesheet
.pagetitle h1 { display: none; }
But in addition to hiding the title, it hides all the heading of type H1. Is there any way to achieve the required result?
Hello Eby,
I believe the code you posted works on Confluence Cloud, but not in Server version. You can replace it by this one:
h1.title-header{
display: none;
}
This works perfectly. Thank you!
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.