This page last changed on Jul 29, 2010 by smaddox.
When the height of your Confluence site footer is significantly greater than the default, you may find that the footer overlaps site content. If this is the case, you will need to add some custom HTML to your Confluence site.
To add custom HTML to allow for the extra height of a custom footer,
Go to the Confluence 'Administration Console'. To do this:
- Open the 'Browse' menu and select 'Confluence Admin'. The 'Administrator Access' login screen will be displayed.
- Enter your password and click 'Confirm'. You will be temporarily logged into a secure session to access the 'Administration Console'.
- Click 'Custom HTML' in the 'Look and Feel' section of the left-hand panel.
- Click 'Edit'.
- Add the following code to the 'At end of the HEAD' textbox.
<style type="text/css">
#com-atlassian-confluence #main {
padding-bottom: 200px;
}
</style>
- Click 'Save'.
 | You may need to adjust the code supplied in these instructions depending on the height of your custom footer If your footer still overlaps site content, increase the 'padding-bottom' amount by the height of the overlap in pixels. Conversely, if there is an excessive gap between your footer and site content, decrease the 'padding-bottom' amount. |
|