Skip to content Skip to sidebar Skip to footer

How To Combine Tabs And Carousel In Twitter Bootstrap

I'm trying to implement Twitter Bootstrap Carousel and Tabs. They both look to be functioning alright on the initial load, but as soon I hit one of the carousel arrows, the content

Solution 1:

Control links refers to #news-box:

<!-- Carousel nav --><aclass="carousel-control left"href="#news-box"data-slide="prev"></a><aclass="carousel-control pause-play pause"href="#news-box"></a><aclass="carousel-control right"href="#news-box"data-slide="next"></a>

But your carousel has no id:

<div class="carousel slide">

Try with:

<div class="carousel slide"id="news-box">

Post a Comment for "How To Combine Tabs And Carousel In Twitter Bootstrap"