下面的内容隐藏了Drupal Nice Menus下拉菜单

时间:2015-07-07 21:42:10

标签: javascript jquery css drupal

我使用Nice Menus模块设置了Drupal菜单,但我的下拉菜单显然被其下方的内容隐藏。我已经尝试了所有方式的z索引和溢出:可见我能想到,我无法让这个工作。使用Firebug我可以看到jQuery正确地将显示更改为阻止并且可见性可见,但子菜单仍然是隐藏的。

这是开发网站,您可以在其中看到HTML / CSS:http://tentenstudios.com/clients/hshf/。带有下拉列表的菜单项是“组信息”。

1 个答案:

答案 0 :(得分:1)

我通过firebug在您的开发站点尝试了这个并且它有效(firefox 38.0.5): 删除行类中的溢出属性 1220.css第15行

.row {
    margin: 0 auto;
    max-width: 1220px;
    min-width: 755px;
    width: 100%;
}

添加“position:relative;”在#maincontent_container中: styles.css第83行

  #maincontent_container {
        background-image: url("/clients/hshf/sites/all/themes/hshf/images/maincontent_corn_bg.png");
        background-position: center bottom;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
    }

告诉我它是否适合你