Hello,
I would like to change the headings size and underlining for my whole confluence site.
I already checked https://confluence.atlassian.com/display/DOC/Styling+Confluence+with+CSS
but this is per space and not site wise.
Can this be done easily for the whole site ?
Thanks a lot in advance,
Pierre
Assuming you've applied the Doc theme to your entire site (https://confluence.atlassian.com/display/DOC/Applying+a+Theme+to+a+Site), you can do 1 of 2 things (that I can think of):
1) Use jQuery to rewrite the style setting after the page is drawn.
2) Edit the theme file and repackage it.
I think you're best bet for #2 is to read this:
https://developer.atlassian.com/display/CONFDEV/Writing+a+Confluence+Theme
Once you understand how to create your own theme, you should be pretty comfortable modifying an existing one and redeploying it across your site.
hth,
matt
Thanks for the tip. I'll follow Amalia recommendation first. Thanks for your time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I started changing things with jQuery and it is pretty neat.
Thanks for the advise.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The easiest way would be to add the following CSS to the Custom HTML (at the end of the HEAD) in Confluence Admin:
<style> .theme-documentation .pagetitle { font-size:40px !important; } </style>
If you'd like to manipulate these styles using JavaScript, then refer to this: https://confluence.atlassian.com/display/CONFKB/How+to+Use+JavaScript+in+Confluence
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'll try that as soon as I can tomorrow. I was a bit disapointed when I read Matthew answer and understood I would have to unpack/modify/pack the theme to make those changes.
Is the Custom HTML overwritten when we upgrade Confluence ?
Thanks a lot for your time !!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nope, Custom HTML won't be overwritten, provided that you do a manual upgrade (through database dump, rather than XML site backup)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, you can do it site wide by editing the global style sheet.
1. Go to the Administration Console (http://yoursite.com/admin/console.action)
2. Scroll down the left side and click StyleSheet under "Look and Feel".
3. Add your CSS rule, being sure to add "!important" at the end of each line. This overrides any other space or page specific settings. For example:
ul.search-results { line-height: 1.0 !important; }
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.