簡體   English   中英

Drupal Nice Menus下拉菜單由以下內容隱藏

[英]Drupal Nice Menus dropdown hidden by content below

我已經使用Nice Menus模塊設置了Drupal菜單,但是下拉菜單顯然被其下面的內容隱藏了。 我已經嘗試過所有形式的z-indexs和overflow:visible,這是我能想到的,但我無法使其正常工作。 使用Firebug,我可以看到jQuery正確地將顯示更改為阻止,可見性更改為可見,但是子菜單仍然被隱藏。

在這里可以查看HTML / CSS的開發站點: http : //tentenstudios.com/clients/hshf/ 帶有下拉列表的菜單項是“組信息”。

我通過firebug在您的開發站點中嘗試了此方法,並且它起作用了(firefox 38.0.5):刪除行類1220.css第15行中的溢出屬性

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

添加“位置:相對;” 在#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;
    }

告訴我是否適合您

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM