Confluence Docs 3.3 : Using CSS to Customise the Easy Reader Theme
This page last changed on Mar 23, 2010 by smaddox.
This page gives some hints on using the space CSS style sheets to customise the Easy Reader theme. You can customise the Easy Reader theme using CSS at space or site level. A common modification is to change or remove the background image.
Editing the CSSTo edit a space's CSS style sheets,
Simple CSS Customisations for Easy Reader ThemeTo change the background image:
body { background: #ccc url("path/to/your/background.gif") 50% 0 repeat-y; }
Remember to set an appropriate background colour to extend past the left and right edges of the image. In the example we use colour code #ccc. This colour should match the last pixel on the left and right of your background image.
To replace the theme's gradient image with your choice of background colour:body { background: #ccc; } To add a border to the left and right of the content area, using a specific colour (in the example we use colour code #ccc):#full-height-container { border-left: 1px solid #ccc; border-right: 1px solid #ccc; } RELATED TOPICSConfiguring the Easy Reader Theme |
![]() |
Document generated by Confluence on Jul 09, 2010 01:08 |