我是foswiki的新手,并在我的公司数据中心运行vm。
我的大部分基线配置都已关闭,但我想知道更多的自定义。
具体来说,我正在寻找有关如何自定义侧栏的一些文档。任何文件或提示都会让我感激不尽!
谢谢!
答案 0 :(得分:0)
我假设你使用默认主题'PatternSkin'
修改补充工具栏的一个示例是更改宽度: 为此,使用以下css
创建附件“SidebarCustomWidth.css”#patternOuter {
margin-left: 8em;
}
#patternSideBar {
width: 8em;
margin-left: -8em;
/*background-color: rgb(200, 200, 255);*/
}
/* remove padding */
#patternSideBarContents {
padding-right: 0;
padding-left: 0;
}
然后您可以将其与
一起使用 * Set USERSTYLEURL = %PUBURLPATH{topic="TheWebname.TopicWithAttachment" "SidebarCustomWidth.css"}%
你可以在这里找到这个例子 https://foswiki.org/Sandbox/StefanKr%C3%BCger/PatternSkinCssCookbookSidebarCustomWidth
以及更多文档和示例 https://foswiki.org/System/PatternSkinCssCookbook
可以在以下位置找到自定义补充工具栏内容的其他选项 https://foswiki.org/System/PatternSkin#Top_44_Bottom_and_Left_Bar_customization
关于补充工具栏,您可以查找WebLeftBar
每个网站都有自己的主题WebLeftBar
。你可以根据自己的需要改变它。如果Web没有WebLeftBar
主题且没有WebLeftBarExample
主题(即后备),则补充工具栏不会呈现。
如果您想更改新网站的默认设置,可以在_default
网站上执行此操作。