隐藏在Nivo滑块后面的CSS菜单栏

时间:2013-12-16 16:10:47

标签: javascript jquery html css

我已经尝试了我可以在Google上找到的所有解决方案,但不知何故,有关z-index的所有信息都无法正常工作:(。这是我第一次使用此网站,所以请原谅我,如果我的内容看起来很混乱

问题1 https://www.dropbox.com/s/jr5wew27ydv7hcl/Screen%20Shot%202013-12-16%20at%2011.57.01%20pm.png

问题2 https://www.dropbox.com/s/7ffztfq7iezc4ao/Screen%20Shot%202013-12-16%20at%2011.57.50%20pm.png

我自己的CSS表

    .header{
    width:960px;
    height:99px;
    font-family:'Francois One', sans-serif;
    text-transform:uppercase;
    z-index:9999px;}
    <!--this holds the css menu bar-->

    .banner, #slidermain {
    width:960px;
    height:328px;}
    <!--this holds the nivo slider-->

    .slidermain {
    background-color:#399;
    margin-bottom:10px;}

Nivo Slider CSS表

/* The Nivo Slider styles */
.nivoSlider {
    position:relative;
    width:100%;
    height:auto;
    overflow: hidden;
    float:left;
    z-index:10px;

}

.nivoSlider img {
    position: relative;
    top:0px;
    left:0px;
    max-width: none;
}
.nivo-main-image {
    display: block !important;
    position: relative !important; 
    width: 100% !important;
}

如果css菜单位置设置为relative,它会起作用,但是下拉菜单会向下推动nivo滑块以适应其大小,导致其他表格也向下移动。但是,一旦鼠标离开菜单栏,nivo滑块就会调整到原来的位置。

/* user menu settings */
.ddmenu { 
  display: block;
  padding:5px;
  text-align:center;
  width: 110px;
  margin: 0 auto;
  margin-top:45px;
  position: relative;
  cursor: pointer;
  background: #fff;
  font-size: 1.2em;
  color: #656565;
  font-weight: normal;
  float: left;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.ddmenu:hover { color: #898989; }

.ddmenu.open {
  background: #5a90e0;
  color: #fff;
  border-left-color: #6c6d70;
  position:relative;
  z-index:200px;
}

.ddmenu ul { 
  position: relative;
  top: 100%;
  left: -1px; /* move content -1px because of container left border */
  width: 200px;
  z-index:200px;
  padding: 10px;
  display: none;
  border-left: 4px solid #8e9196;
  background: #fff;
  list-style:none;
  text-decoration:none;
  text-align:left;
  -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

任何提供的帮助将不胜感激!谢谢!

2 个答案:

答案 0 :(得分:0)

您在z-index中添加了一个单位,但不允许z-index属性具有单位: W3C: z-index

尝试从所有z索引中删除“px”,这样可以解决您的问题。

答案 1 :(得分:0)

尝试使用菜单第一级的相对位置,并为菜单2级添加绝对位置,这样:'家,服务,事件,信息,关于我们,联系'必须具有相对位置,对于另一个ul,其中:'about萨那,合作伙伴的设定位置是绝对的,一切都会好的。