Question
The default postion for this path information is located at the bottom of each page. How can I put it into the topbar of my site?
I know I can edit my topbar, but don't what to put for this purpose
Environment
--
ChunhuaLiao - 13 Oct 2004
Answer
Chances are your answer is either: on the TWiki.WebTopBar facility. (see
PatternSkinCustomization) If not, perhaps you want it on the proposed (
PatternSkinDev) WebControlTopBar, but if so, you'll have to do it yourself as that does not exist yet.
--
MartinCleaver - 13 Oct 2004
Create a file
UserLayout.css with the following contents and attach it to your home topic.
.twikiToolBar {margin-top: 20px;}
.twikiTopicFooter .twikiLeft {
position: absolute;
top: 65px;
left: 16.5em;
}
Add this setting to your home page:
* Set USERLAYOUTURL = %PUBURL%/%MAINWEB%/%TOPIC%/UserLayout.css
Tested in IE6 and Mozilla 1.7b.
--
SamHasler - 13 Oct 2004
Can someone give me a hint on putting the breadcrumb trail in the
WebTopBar in
PatternSkin? I can't seem to figure it out. Especially: where is the breadcrumb trail generated?
--
JosMaccabiani - 14 April 2005
[Not tested]
You will have to edit the view template to accomplish this. The breadcrumb is in view.pattern.tmpl, in section
%TMPL:DEF{"standardfooter"}%. Move the breadcrumb part to twiki.pattern.tmpl, to
%TMPL:DEF{"topbar"}%. You can either replace
%INCLUDE{"TWiki06x01.WebTopBar"}% or put the part right before or right after.
--
ArthurClemens - 14 Apr 2005