How to add captions to Backslider?
First you need to add captions as UL list to the .backslider div (every caption corresponds to Backslider slide by its position in list)
<ul class="bs-captions">
<li>Caption text</li>
<li>Caption text</li>
...
</ul>
then to Backslider init add these two callback functions
slidesLoaded: function(){
var active = $(this).find('.bs-slides > li:visible').index();
$(this).find('.bs-captions > li').eq(active).show();
},
beforeSlide: function(index) {
$(this).find('.bs-captions > li').filter(':visible').
stop().fadeOut('fast').
end().eq(index).
stop().fadeIn('fast');
}
and finally add this very basic style to the head to position captions in top-left corner
<style type="text/css">
.bs-captions > li {
display: none; position: absolute; top: 0; left: 0; z-index: 60;
}
</style>