zurb / orbit

454 stars 96 forks source link

The more images, the indicators shift right #27

Open closdesign opened 13 years ago

closdesign commented 13 years ago

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

  • tags but no to no avail.

    Thanks.

  • kvdenden commented 13 years ago

    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);
            });