Cita:
Iniciado por antoniopol Quizas el tamaño del ul, que sea tamaño unicamente para 8 fotos, creo que es cuestion de width, o igual del margin cuando pulsas a la derecha o a la izquierda.
Aquí te pego el código del CSS de la web con respecto a lo del carrusel, a ver si así te haces una mejor idea
Código PHP:
.carrousel_inner ul li{
float:left;
list-style: none;
margin: 0;
width:230px;
height:135px
}
.carrousel_inner ul{
margin:0;
padding:0;
height:137px;
width: 10000px;
overflow:hidden;
}
.carrousel_inner{
/* border:1px solid red; */
float:left;
width:905px;
height:137px;
overflow: hidden;
}
.carrousel_left, .carrousel_right{
height: 137px;
width:30px;
float:left;
}
.carrousel_left{
background: url(../img/carrusel/flecha_izq_slide.png) no-repeat top;
}
.carrousel_left:hover{
background:url('../img/carrusel/flecha_izq_slide.png') no-repeat scroll top transparent
}
.carrousel_right{
background: url(../img/carrusel/flecha_der_slide.png) no-repeat top;
}
.carrousel_right:hover{
background: url(../img/carrusel/flecha_der_slide.png) no-repeat top;
}
.left_inactive,.left_inactive:hover{
background: url(../img/carrusel/flecha_izq_slide.png) no-repeat top;
}
.right_inactive,.right_inactive:hover{
background: url(../img/carrusel/flecha_der_slide.png) no-repeat top;
}
.carrousel{
float:left;
height: 137px;
width: 2000px;
}