2009-09-14 5 views

Répondre

1

Pour rendre les diapositives plus tout ce que vous devez changer est la suivante:

/* 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; 
    } 

et voilà, c'est tout ce que vous devez changer pour rendre le curseur ont une plus grande largeur et la hauteur.

Si vous avez changé quelque chose d'autre, ce sera le problème.

Si cela ne fonctionne pas, affichez votre code afin que nous puissions voir le problème réel.

Questions connexes