我正在使用Joomla 3.6.5。
使用标准模块:
我有两个问题:
当您从第2级开始时,下拉菜单(已选中)不起作用。您必须查看所有内容 - 这是一个非常长的列表,或者您只能看到第2级项目。
您不会看到侧边菜单上选择的菜单项。
有没有办法解决这个问题?或者我可能需要下载一些更高级的菜单插件?
答案 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"