#viewport{ width: 660px; /* Defines the size of the visible part of the carousel 714 Attention : if you only want to see plain items in the viewport, the width of the viewport should take into account of : - the items width - the right and left padding of items - the number of items you want to see in the viewport */ overflow:hidden; /* Hides extra elements, those outside the viewport area */ /* Fix for IE */ position:relative; background-color: #FFFFFF; float: left; margin: 0 0 0 3px; } #viewport ul{ position: relative; /* Enables positionning of elements inside viewport */ padding: 0; /* Resets default - User Agent - style */ margin: 0; } #viewport li{ width: 90px; /* Defines the size of inner element */ height: 80px; float: left; /* Places list items side by side*/ list-style: none; /* Resets default - User Agent - style */ padding: 0; /* Cosmetic */ background-color: #FFFFFF; margin: 0 2px 0 2px; padding: 0; text-align:center; } /* Cosmetic */ #simplePrevious, #simpleNext{ cursor: pointer; border: 0;	 } 
