How to hide the Page Title and the related details(created by/modified by and timestamp) below the Page Title

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform Notice: Data Center - This article applies to Atlassian products on the Data Center platform.

Note that this knowledge base article was created for the Data Center version of the product. Data Center knowledge base articles for non-Data Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

 

Purpose

This KB explains how to hide the Page Title and the details(created by/modified by and timestamp details) below the Page Title in the Confluence Page or Space.

The final appearance will be similar to: 

Solution

Be mindful that customisations are not part of our support scope as per Atlassian Support Offerings. Any effort provided to support issues related to customisation will be on a best-effort basis by the support engineer.

Global

If the changes need to be applied across the entire Confluence environment, then the above CSS code can be added under General Configuration > Stylesheet > Space Stylesheet

#title-heading {
display:none;
}
.page-metadata {
display:none;
} 

Space

If you want these changes for a specific Space (i.e. for all of the pages in the Space), you can add the below CSS code under Space Tools > Look and Feel > Stylesheet > Space Stylesheet

#title-heading {
display:none;
}
.page-metadata {
display:none;
} 

Page

For a single page, the below code can be added to a new HTML macro on the specific page: 

<style type="text/css">
#title-text {display:none;}
.page-metadata 
{display:none;}
</style> 



Last modified on Mar 12, 2024

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.