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

Drupal Nice Menus dropdown hidden by content below

本文关键字:在下面 隐藏 Nice 菜单 下拉菜单 Drupal      更新时间:2023-09-26

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

这里是您可以看到HTML/CSS的开发站点:http://tentenstudios.com/clients/hshf/。带有下拉列表的菜单项是"Group Information"。

我通过firebug在你的开发网站上尝试了这个,它工作了(firefox 38.0.5):删除行类中的溢出属性css line 15

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

在#maincontent_container中添加"position: relative;"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;
    }

告诉我如果如果它适合你