Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.