There is an interval between ul elements. This is caused by any space in your HTML. For example, you can eliminate it by excluding all line breaks in your HTML. Since this is obviously impossible, it is best to simply get rid of the interval by making it equal to zero. Since the spacing is technically caused by the font, we can use font-size: 0; . You can do this by adding the following to your CSS:
#carousel-images ul { font-size:0; }
Of course, it might be better to give your ul identifier and a link to this selector in your CSS. IF you still want to spacing elements, you can use fields and padding to accomplish this.
#carousel-images ul li { margin-right:10px; }
Edit: I see that the question has already been answered. Awesome! I also added an example solution to preserve some space.
source share