多维菜单悬停问题

发布于 2024-11-19 16:33:12 字数 199 浏览 2 评论 0原文

我刚刚开始制作wp-site

不过我对菜单有一个小问题;我希望当您将孩子悬停在主菜单上时,主菜单保持活动状态。例如,当您将“Undersida 1”悬停在“Hem”下时,我希望“Hem”保留其背景颜色

I have just started making a wp-site.

I have a small problem with the menu though; I want the main menu to stay active while your hovering the children. For example, when you hover "Undersida 1" under "Hem", I want "Hem" to keep its backgroundcolor.

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

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

发布评论

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

评论(2

你的心境我的脸 2024-11-26 16:33:12

您可以通过在 CSS 中进行以下更改来解决您的问题:

您应该使用“li:hover a”而不是“li a:hover”:

#menu-main-menu li:hover a {
    background: #afffaf;
}

这应该起作用的原因是,即使您位于子菜单 li:hover 上仍然被视为活动样式表,但不是“li a:hover”。

You can solve your problem with the following change in your CSS:

you should use "li:hover a" instead of "li a:hover":

#menu-main-menu li:hover a {
    background: #afffaf;
}

The reason this should work is that even when u are on the sub-menu li:hover is still considered as active stylesheet but not "li a:hover".

哀由 2024-11-26 16:33:12

如果使用 addClass 方法怎么样?然后为该类指定背景颜色。

How about if you use the method addClass? Then give that class a background-color.

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