bxslider remove gap between slides and thumbnail pager

匿名 (未验证) 提交于 2019-12-03 01:44:01

问题:

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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!