好的,所以有人建议我在这里发布这个问题,这对你们中的许多人来说可能听起来很愚蠢和琐碎,但是帮助了一个brotha。
如果将窗口折叠到大约1200px宽,您会发现仍然可以向右滚动,但不能向左滚动。我需要侧面图像在浏览器窗口中流畅。
如果您想提供帮助,请查看来源和style.css并告诉我原因!以及如何解决这个问题。
#left{
background:transparent url(/images/promos/grif_left.png) no-repeat scroll center top;
height:1080px;
left:-461px;
position:absolute;
top:0;
width:461px;
}
#right{
background:transparent url(/images/promos/grif_right.png) no-repeat scroll center top;
height:1080px;
left:1000px;
position:absolute;
top:0;
width:381px;
}
答案 0 :(得分:0)
我无法准确地重现问题,我从未见过滚动条。
但我确实发现了一个问题,你有CSS样式将body的溢出设置为隐藏。
下面是 http://www.gsprating.com/wp-content/w3tc/min/1f1244/default.include.1061365648.css
body {
background: none repeat scroll 0 0 #000000;
color: #161514;
font-family: Arial,Georgia,Tahoma,sans-serif;
font-size: 13px;
margin: 0 auto;
overflow-x: hidden; /* change this to see scrollbar */
padding: 0;
}