VBulletin - 4.1.11 中的导航管理器在哪里?

Where is the navigation manager in VBulletin - 4.1.11?

我在新版vBulletin 中找不到导航管理器。它在较新版本中位于 settings 下,但现在在 4.1.11 版本中看不到它。如果没有,如何编辑导航项?

您的论坛是 运行 VB 4.1.11 - 导航管理器是在 4.2.0 中添加的。您应该升级到 4.2.x 才能访问它。在 4.1.11 中,所有更改都需要手动编辑或插件。

vBulletin 4.2 Release Note

版本包含:

  • Activity 流
  • 导航管理器
  • 今天访问过的会员

更新:

1. 如果你不想升级你的 vBulletin 版本,你应该手动升级 这取决于你的风格

例如一些默认样式的导航栏在头文件中 您可以编辑:

Admincp > Styles & Templates > Style Manager > Your Template > Edit Templates > header

如果您想知道您的样式导航栏的确切路径,您可以在style manager搜索表单中搜索您的样式导航栏的一些代码

导航条码示例:

<div class="cnavbar">
    <center>
        <div id="cnavtabs" class="cnavtabs">

            <ul>
                <li><a href="Your URL">Link Text</a></li>
                <li><a href="Your URL">Link Text</a></li>
                <li><a href="Your URL">Link Text</a></li>
                <li><a href="Your URL">Link Text</a></li>
                <li><a href="Your URL">Link Text</a></li>
            </ul>

        </div>
    </center>
</div>

也许 css 代码:

.cnavbar
{
    width:100%;
    height:32px; ( Change Height Here )
    background-color:#150517; ( Change Background Color Here )
    border-bottom:1px solid #666;
}
#cnavtabs
{
    width:960px; ( Change width Here )
    height:100%;
}

2. 另一方面,如果您不想手动执行此操作,您应该查找或请求 Mod 或支持 vBulletin 4 的插件。1.x

这是一个 Mod 为所有 4.x.x 版本的 vBulletin 创建自定义导航

[DBTech] DragonByte Custom Navigation v1 (vB4)

希望能帮到你