I am using bxslider with a thumbnail pager. It all works fine, but there is a large space between the slides and the thumbnails (about an inch). I can't find where to reduce the size of this gap. Here's my code
<div style="width:720px;margin:0 auto;"> <div class="bxslider"> <div style="background-image:url('images/slide14.png');width:710px;height:230px">number 1</div> <div style="background-image:url('images/slide16.png');width:710px;height:230px">number 2</div> <div style="background-image:url('images/slide17.png');width:710px;height:230px">number 3</div> </div> <div id="bx-pager" style="text-align:center;;"> <a data-slide-index="0" href=""><img src="images/green.png" /></a> <a data-slide-index="1" href=""><img src="images/purple.png" /></a> <a data-slide-index="2" href=""><img src="images/blue.png" /></a> </div> </div> <script> $('.bxslider').bxSlider({ pagerCustom: '#bx-pager' }); </script>
Here's a screenshot - http://i.stack.imgur.com/tjElW.png
Any ideas how I can bring the thumbnails up closer to the slides? Thanks in advance