Drupal 主菜单水平呈现

发布于 2024-12-18 19:42:23 字数 159 浏览 0 评论 0原文

我不确定这是怎么发生的。但无论我在哪里渲染主菜单块,它都会水平而不是垂直地显示其链接。

问题是,对于我拥有的每个主题,主菜单都会水平呈现自己,所以我假设这不是一个主题特定问题,而是一个普遍问题。

有人知道这里发生了什么以及我如何尝试解决这个问题吗?

谢谢!

I am not sure how this has happened. but wherever I render the block of my main menu, it displays it's links horizontally rather vertically.

The deal is, with each of the themes that I have, the main menu renders itself horizontally, so I am assuming this is not a theme specific issue and more of a general issue.

Anybody with cues on whats happening here and how I can attempt to fix this ?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

最后的乘客 2024-12-25 19:42:24

这很可能是因为菜单具有在 system.menus.css 中设置的 inline 类。最简单的解决方案是将以下内容添加到主题的 CSS 文件中:

#menu-wrapper-id ul li, #menu-wrapper-id ul.inline li {
  display:block;
}

您需要将 #menu-wrapper-id 替换为

的真实 ID > 围绕主菜单。

It's most likely because the menu has the inline class which is set in system.menus.css. The simplest solution would be to add the following to your theme's CSS file:

#menu-wrapper-id ul li, #menu-wrapper-id ul.inline li {
  display:block;
}

You'll need to substitue #menu-wrapper-id for the real ID of the <div> that surrounds the main menu.

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