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

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

Note that this KB was created for the Data Center version of the product. Data Center KBs 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

Summary

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:

(Auto-migrated image: description temporarily unavailable)

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

1 2 3 4 5 6 #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

1 2 3 4 5 6 #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:

1 2 3 4 5 <style type="text/css"> #title-text {display:none;} .page-metadata {display:none;} </style>
Updated on April 8, 2025

Still need help?

The Atlassian Community is here for you.