Codeigniter PyroCMS ->导航查询

发布于 2024-11-14 12:07:13 字数 172 浏览 1 评论 0原文

我的页面布局网站上有一个框,显示用户所在特定部分的导航:

示例:

食物 ->主标题女巫是页面标题 - 我的工作正常 苹果 橙子 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蝶…霜飞 2024-11-21 12:07:13

您可以使用 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;
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文