最大宽度的CSS滑块宽度问题:980px

时间:2014-04-09 11:57:50

标签: html css resize prestashop prestashop-1.5

我认为我有一些CSS问题。

在整页宽度下,滑块宽度正常。

但是在@media屏幕和(最大宽度:980px)时,每边都缺少滑块。

任何人都有线索?

网址:已删除。

3 个答案:

答案 0 :(得分:0)

尝试更改responsive.css中的第79行

宽度为600px。

.bx-wrapper{width:600px !important; margin-left:auto; margin-right:auto;}

答案 1 :(得分:0)

由于width:535px !important的媒体查询中的.bx-wrapper设置了@media screen and (max-width: 980px),因此缺少边。尝试使用此

在样式表中覆盖它
.bx-wrapper{
  width:100% !important;
}

将样式表中的内容添加到媒体查询@media screen and (max-width: 980px)

答案 2 :(得分:0)

在媒体查询@media screen and (max-width: 980px)中,您将width:535px提供给bx-wrapper。删除该行&它会起作用。