滑块隐藏子菜单

时间:2013-09-14 15:04:32

标签: java

即时通讯使用“menumatic”下拉菜单。当我安装滑块子菜单消失了。通常在“arsiv”菜单中我有3个子菜单,但我看不到它们。我不知道javascript或css,我该怎么做才能解决这个问题?

这些是菜单代码;

http://pastebin.com/embed_iframe.php?i=Lj3hWEs5

2 个答案:

答案 0 :(得分:0)

我在使用的DotNetNuke皮肤中经常遇到这个问题。它最终成为CSS中的东西。看看3个子菜单的z指数。

http://www.w3schools.com/cssref/pr_pos_z-index.asp

http://coding.smashingmagazine.com/2009/09/15/the-z-index-css-property-a-comprehensive-look/

答案 1 :(得分:0)

" z-index:x;"解决了我的冲突。很容易解决许多人似乎遇到的问题。

尝试将其放在下拉ul。的CSS样式下。

实施例

.navbar ul .subnav {
display: none;  
z-index: 3; 
}

你可以玩数字(x)。