I'm using a bootstrap carousel ( * bootstrap-carousel.js v2.2.2). The problem is, the style of the 'ol' which contains the carousel-indicators isn't working. When I add the style manually to my css file it is displaying, but it doesn't seem to change when the .active class changes from slide to slide.
My code is:
<div id="HomeCarousel" class="carousel slide">
<ol class="carousel-indicators">
<li id="homecar1" data-target="#HomeCarousel" data-slide-to="0" class="active"></li>
<li id="homecar2" data-target="#HomeCarousel" data-slide-to="1"></li>
<li id="homecar3" data-target="#HomeCarousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"><img src="<?php bloginfo('template_url'); ?>/images/home/home_carousel1.jpg" height="506px" /> </div>
<div class="item"><img src="<?php bloginfo('template_url'); ?>/images/home/home_carousel2.jpg" /></div>
<div class="item"><img src="<?php bloginfo('template_url'); ?>/images/home/home_carousel3.jpg" /></div>
</div>
</div>
So it seems the jquery isn't working that well too.. but the slides work and the prev/next does too when I add it..