These happens because inside videos.js, each DIV holding the contents is missing an explicit width attribute, unlike the first Carousel, which does, via:
Code:
.stepcarousel .panel{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
width: 132px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}
You'll need to do something similar for the second Carousel's DIVs as well.
Bookmarks