Чтобы сделать слайды больше, вам нужно изменить следующее:
/* this is the width of the outer container */
.anythingSlider {
width: 670px; /*change this value */
height: 137px; /* change this value */
position: relative;
margin: 0 auto 0;
}
/* this is the width of the inner container */
.anythingSlider .wrapper {
padding-bottom: 0;
margin-bottom: 0;
width: 670px; /*change this value */
overflow: hidden;
height: 137px; /*change this value */
margin: 0 10px;
position: absolute;
top: 0;
left: 0;
}
/* this is the width of the slide */
.anythingSlider ul li {
display: block;
float: left;
padding: 0;
height: 317px; /*change this value */
width: 680px; /*change this value */
margin: 0;
}
и это все, что вам нужно изменить, чтобы слайдер имел большую ширину и высоту.
Если вы изменили что-то еще, это будет проблемой.
Если это не сработает, опубликуйте свой код, чтобы мы могли увидеть реальную проблему.