Hello. Is there a way to format the default Page title using Custom HTML? By default, it displays the logo and all. I want to remove the logo, change the font size (to make it bigger) and implement a color scheme. Is this possible?
Im trying to have the same idea with the Atlassian Documentation.
Community moderators have prevented the ability to post new answers.
The stylesheet can be altered for a particular space, or for the Confluence site globally. Look at Confluence Admin -> Stylesheet. You can add your own CSS styles there to alter the way that pages appear.
The part of the Confluence page that displays the page title is coded like this:
<h1 id="title-heading" class="pagetitle with-breadcrumbs">
...
<span id="title-text" class="with-breadcrumbs">
<a href="/display/BAESYS/Trade+Form">Trade Form</a>
</span>
</h1>
...so to make the title appear larger, you could add this to the global Stylesheet:
#title-text a { font-size: 150% }
Color schemes are likewise modifiable at the space level or the global level.
Thanks everyone. I also found a custom macro you can create to edit it.
https://confluence.atlassian.com/display/DISC/Page+Title+Style
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you want to make your Documentation theme look like Atlassian's as this to Confluence Admin | Look & Feel | At the end of the HEAD
<link type="text/css" rel="stylesheet" href="https://dl.dropboxusercontent.com/u/658119/tmp/confluence-space-link.css" >
It should fix up the title like this:
Some background:
https://answers.atlassian.com/questions/171818/confluence-page-tree-title
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.