0

我在自定义 Hueman WordPress 主题时遇到了问题。我的下拉菜单内容显示在顶部标题 h2 后面。我的网站是wortlo.com

我尝试使用以下规则解决此问题:

overflow:visible!important

我希望我的下拉菜单可以显示在所有其他内容之上

4

1 回答 1

0

您的标题有1Z-index。增加它以赋予它更多优先级。您可以通过在 Customizer 中添加以下代码作为自定义 CSS 来实现

#header {
    z-index: 999;
}

资源:Css z-index

更新:标题在底部有填充,因此增加 z-index 将隐藏您的标题。所以删除填充。并且您的 Container 有负边距,因此删除标题的填充将隐藏标题。移除 #page.container 的边距以进行调整。

#header {
    z-index: 999;
    padding-bottom: 0px;
}
#page.container {
    margin-top: 0px;
}
于 2019-07-12T18:24:08.480 回答