Codeigniter PyroCMS ->导航查询
我的页面布局网站上有一个框,显示用户所在特定部分的导航:
示例:
食物 ->主标题女巫是页面标题 - 我的工作正常 苹果 橙子 Pears
无论如何,我可以显示特定页面的导航吗?我可以使用一个组,但这样我就会有两个链接 - 如果我认为正确的话,我有 4 个带下拉菜单的导航菜单
I have a box on the site of my page layout that displays the navigation for the particular section the user is in:
Example:
Food -> main heading witch is the page heading - I have this working fine
Apples
Oranges
Pears
Is there anyway that I could show the navigation for the specific page? I could use a group but then I would have a double up of links - if I am thinking correct I have 4 navigation menus with dropdowns
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 CSS 隐藏它
查看我的网站
#nav_2 li.current ul, #nav_2 li.has_current ul {
可见性:可见;
显示方式:内嵌;
}
#nav_2 li.current, #nav_2 li.has_current {
背景:#dee5d7;
}
#nav_2 li ul{
可见性:隐藏;
显示:无;
}
You can hide it with CSS
Check my site
#nav_2 li.current ul, #nav_2 li.has_current ul {
visibility: visible;
display: inline;
}
#nav_2 li.current, #nav_2 li.has_current {
background: #dee5d7;
}
#nav_2 li ul{
visibility: hidden;
display: none;
}