答案 0 :(得分:1)
试试这个
#slideshow {
height: 240px;
margin-left: -40px;
position: relative;
width: 950px;
}
答案 1 :(得分:1)
<div id="slideshow">
<ul id="slides" style="overflow: hidden;">
<li id="content" style="position: absolute; opacity: 1; z-index: 29;">
<li style="position: absolute; opacity: 1; z-index: 30; right: 0px;">
<img src="http://www.pdqmachine.biz/_images/uploads/slide1.jpg" alt="Sea turtle">
</li>
<li style="position: absolute; opacity: 1; z-index: 31; right: 0px;">
<img src="http://www.pdqmachine.biz/_images/uploads/slide2.jpg" alt="Coral Reef">
</li>
<li style="position: absolute; opacity: 1; z-index: 28; right: 0px;">
</ul>
</div>
我已将right:0px
添加到li
答案 2 :(得分:1)
在#slides
#slides {
float: left;
margin: 0;
padding: 0;
width: 950px;
}
答案 3 :(得分:0)
在#main2中插入样式,这样可以解决更多问题:)因为你在之前的DIV中有浮动,而你的滑块位于菜单上方,你将无法点击这些项目。
#main2 {
....
clear:both;
}
并在
#slides {
float: left;
padding: 0;
}
答案 4 :(得分:0)
和quickfix
ul#slides {
margin-left:-37px;
}
答案 5 :(得分:0)
.column-inmiddle {
width: 138%; remove this or make 100%
}
#slideshow {
position: relative;
width: 950px;
height: 240px;
margin: 40px auto 0 auto; add this
}
希望你能得到你想要的东西