orbit
orbit copied to clipboard
The more images, the indicators shift right
I have implemented your slideshow on our website. Very nice by the way. We are having an issue with when there are around 10 or more images the indicator buttons under the slideshow shifts right. Any ideas. I have tried messing with the CSS to try to text align:center the
Thanks.
Hello, I had the same problem and fixed it by adding the following bit of javascript to my page:
jQuery(window).load(function(){
jQuery(".orbit-slider").orbit({timer: "false", bullets: "true", animation: "fade", captions: "true"});
var bullets = jQuery(".orbit-bullets");
var w = "-" + bullets.width() / 2 + "px";
bullets.css("margin-left", w);
});