If you check the Site Here.
Near the footer you will find "LATEST NEWS" ...
I am using bxslider.. As of now it's only showing 1 title per slide. What i want is probably 2 or 3 titles per slide. Possible?
Here is my code.
<script type="text/javascript" src="/jquery.bxslider.js"></script>
<link rel="stylesheet" href="/jquery.bxslider.css" media="screen" />
<div style="margin-top: -19px;">
<ul class="bxslider">
{module_blogpostlist,-1}
</ul>
</div>
<script>
$(document).ready(function(e) {
$('.bxslider .blog-post').each(function(index) {
$(this).insertBefore('<li>');
$(this).insertAfter('</li>');
});
});
</script>
<script>
$('.bxslider').bxSlider({
mode: 'fade',
captions: true
});
</script>