orbit icon indicating copy to clipboard operation
orbit copied to clipboard

The more images, the indicators shift right

Open closdesign opened this issue 13 years ago • 1 comments

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.

  • closdesign avatar Jul 20 '11 19:07 closdesign

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

    kvdenden avatar Aug 08 '11 16:08 kvdenden