Drupal 主菜单水平呈现
我不确定这是怎么发生的。但无论我在哪里渲染主菜单块,它都会水平而不是垂直地显示其链接。
问题是,对于我拥有的每个主题,主菜单都会水平呈现自己,所以我假设这不是一个主题特定问题,而是一个普遍问题。
有人知道这里发生了什么以及我如何尝试解决这个问题吗?
谢谢!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很可能是因为菜单具有在
system.menus.css
中设置的inline
类。最简单的解决方案是将以下内容添加到主题的 CSS 文件中:您需要将
#menu-wrapper-id
替换为的真实 ID > 围绕主菜单。
It's most likely because the menu has the
inline
class which is set insystem.menus.css
. The simplest solution would be to add the following to your theme's CSS file:You'll need to substitue
#menu-wrapper-id
for the real ID of the<div>
that surrounds the main menu.