1default-sidebar theme of dokuwiki
2
3author: Xan <DXpublica@telefonica.net>
4date: 2006-04-05
5modified: 2007-01-06
6license: GPL v2
7
8INSTALLATION
9===================================
10
111) decompress default-sidebar.tar.gz in lib/tpl/sidebar-theme
122) modify sidebar-theme/conf.php for sidebars
133) put $conf['template'] = 'sidebar-theme'; in your conf file (or use configuration manager in admin mode)
14
15USAGE
16===================================
17By default no sidebar is created.
18You could create a sidebar for specific page or default sidebar (for all pages)
19
20- For create left sidebar of "wikiexample" page, you have to create the page "wikiexample_sidebar_left" (the "sidebar" string could be changed in conf.php). Idem right sidebar
21- For create default left sidebar, simply create "default_sidebar_left" (it could be changed in conf.php) (idem right sidebar)
22- The specific page sidebar has high priority than default sidebar.
23
24OPTIONAL
25=======================================
26
27- All design is in sidebar-theme.css file
28- By default left and sidebar ocupied 20% of the page and main wiki page 60%
29- For change it, modify in sidebar-theme.css:
30
31left_tr_estructura, #right_tr_estructura
32{
33   width: 20% !important;
34   max-width: 20% !important;
35   min-width: 20% !important;
36}
37
38#center_tr_estructura
39{
40  width: 60% !important;
41  max-width: 60% !important;
42  min-width: 60% !important;
43}
44