Nick20000 Posted October 19, 2014 Share Posted October 19, 2014 Hi. I want to remove just the numbers on the buttons. How can I do this? Picture added. http://www.shopmost.co.uk thank you. Link to comment Share on other sites More sharing options...
S-HAMMANI Posted October 19, 2014 Share Posted October 19, 2014 Hi in SITE/modules/homeslider/js/jquery.bxSlider.min.js , line 92 find this code var pagerString='';if(options.buildPager){for(var i=0;i<pagerQty;i++){pagerString+=options.buildPager(i,$children.eq(i*options.moveSlideQty));[spam-filter]else if(type=='full'){for(var i=1;i<=pagerQty;i++){pagerString+='<a href="" class="pager-link pager-'+i+'">'+i+'</a>';[spam-filter]else if(type=='short'){pagerString='<span class="bx-pager-current">'+(options.startingSlide+1)+'</span> '+options.pagerShortSeparator+' <span class="bx-pager-total">'+$children.length+'<span>';} and replace '+i+' with an space code ( ). result: var pagerString='';if(options.buildPager){for(var i=0;i<pagerQty;i++){pagerString+=options.buildPager(i,$children.eq(i*options.moveSlideQty));[spam-filter]else if(type=='full'){for(var i=1;i<=pagerQty;i++){pagerString+='<a href="" class="pager-link pager-'+i+'"> </a>';[spam-filter]else if(type=='short'){pagerString='<span class="bx-pager-current">'+(options.startingSlide+1)+'</span> '+options.pagerShortSeparator+' <span class="bx-pager-total">'+$children.length+'<span>';} Link to comment Share on other sites More sharing options...
Nick20000 Posted October 20, 2014 Author Share Posted October 20, 2014 perfect. thank you. Link to comment Share on other sites More sharing options...
pat123 Posted December 3, 2014 Share Posted December 3, 2014 How can, I also remove the cirkel where the number was in ? see http://italiaansewijnkopen.be/index.php (black circle onthe right of the slider) Link to comment Share on other sites More sharing options...
Paulito Posted December 3, 2014 Share Posted December 3, 2014 Hello Have a look at: bx_style.css and around Line 77 you will see: /*pager links hover and active states*/ .bx-pager .pager-active, .bx-pager a:hover { color:#fff; text-decoration:none; background-position: 0 0; display: none; (Add this line) } Before http://screencast.com/t/VCZDNRDJ2GM After http://screencast.com/t/sdXjNkdgGR Paul Link to comment Share on other sites More sharing options...
pat123 Posted December 3, 2014 Share Posted December 3, 2014 (edited) yes , this did the trick Tx Paulito Edited December 3, 2014 by pat123 (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now