Does anyone have an example PageTemplate/Stylesheet that does this?
<div class="pageFooter" style="background-color: #dd8"
tiddler="FooterTiddler"></div>
Cheers,
Bradley
There must be some 'trick' (CSS) to keep the footer below _all_
displayed content of the TiddlyWiki.
I modified the stylesheet (TiddlyWiki version 2.0.10) for #sidebar.
was:
#sidebar {
position: absolute;
right: 3px;
width: 16em;
font-size: .9em;
}
is:
#sidebar {
position: relative;
float: right;
right: 3px;
width: 16em;
font-size: .9em;
}
Also, from http://lewcid.googlepages.com/lewcid.html (where I got the
idea to incorporate a footer), I modified the PageTemplate.
Everything below the header was wrapped in another <div
id='bodywrapper'>:
<div id='bodywrapper'>
<div id='mainMenu' refresh='content' tiddler='MainMenu'></div>
<div id='sidebar'>
<div id='sidebarOptions' refresh='content'
tiddler='SideBarOptions'></div>
<div id='sidebarTabs' refresh='content' force='true'
tiddler='SideBarTabs'></div>
<div id='sidebarCopyright' refresh='content'
tiddler='Copyright'></div>
</div>
<div id='displayArea'>
<div id='messageArea'></div>
<div id='tiddlerDisplay'></div>
</div>
<div id='contentFooter' refresh='content'
tiddler='contentFooter'></div>
</div>
Interested to see how you accomplished this.