Reputation: 193
The slider is only showing the first image:
<div id="bxslider">
<img alt="" title="" src="http://interior-design-ideas.net/wp-content/uploads/2014/05/1400327585.png" />
<img alt="" title="" src="http://interior-design-ideas.net/wp-content/uploads/2014/05/2527547172_575ec12b3f_z1.jpg" />
<img alt="" title="" src="http://interior-design-ideas.net/wp-content/uploads/2014/05/3992311797_e86e2343e01.jpg" />
</div>
$("#bxslider").bxSlider({
mode: 'slide',
responsive: true
});
Upvotes: 0
Views: 1498
Reputation: 2861
There is not any mode:'slide'
delete that and it will work.
Mode has 'horizontal', 'vertical', 'fade', see all available options here: http://bxslider.com/options
Also responsive option is not needed cause true is the default option.
Upvotes: 1