Joomlas子菜单无法正常工作

时间:2017-02-16 14:39:19

标签: drop-down-menu joomla menu joomla3.0 selected

我正在使用Joomla 3.6.5。

使用标准模块:

  • 使用顶部的第1级菜单。
  • 相同的菜单,但从第2级(以及更多)开始到左侧。
  • 中间有一个标准的面包屑来展示文章(而且它是#34;你在这里"在底部)。

我有两个问题:

  • 当您从第2级开始时,下拉菜单(已选中)不起作用。您必须查看所有内容 - 这是一个非常长的列表,或者您只能看到第2级项目。

  • 您不会看到侧边菜单上选择的菜单项。

enter image description here

enter image description here

有没有办法解决这个问题?或者我可能需要下载一些更高级的菜单插件?

1 个答案:

答案 0 :(得分:0)

让第二部分起作用(查看选定的子菜单项)。将此添加到template.css(第3019行):

.nav-pills > .current > a,
.nav-pills > .current > a:hover,
.nav-pills > .current > a:focus {
    color: #fff;
    background-color: #f2981d; /* Or standard #005e8d*/
}
.nav-pills ul a,
.nav-pills ul a:hover,
.nav-pills ul a:focus {
    padding: 4px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.nav-pills ul > .current > a,
.nav-pills ul > .current > a:hover,
.nav-pills ul > .current > a:focus {
    color: #fff;
    background-color: #f2981d; /* Or standard #005e8d*/
}

还必须将模块菜单 - 菜单类后缀更改为" nav-pills nav-stacked"