我的滑块上的下一个和上一个箭头出现问题。滑块用于随窗口收缩和扩展。除 safari 外,所有浏览器中的一切看起来都很棒。按钮位于滑块的顶部而不是中间。
我已经尝试了我能想到的一切来解决这个问题。有任何想法吗?
这是网站http://upperdeck.dev.warp9inc.com
这是按钮的代码。
.slideshow-wrapper .backward {
position:absolute;
left: 10px;
margin-top:10%;
background:url(../../images/infortis/super-slideshow/slideshow-arrows.png) 0 0 no-repeat;
width:50px;
height:50px;
}
.slideshow-wrapper .forward {
position:absolute;
right:10px;
margin-top:10%;
background:url(../../images/infortis/super-slideshow/slideshow-arrows.png) -50px 0 no-repeat;
width:50px;
height:50px;
}
谢谢!