• Resolved erikvlie

    (@erikvlie)


    Hello,

    I like your plugin but when I try to center the slideshow it keeps jumping back to the left margin. It’s driving me crazy and I’ve tried every suggestion you made. I’m using Twenty Ten without CSS or other modifications ; I’ve checked all the CSS and unless I’m overlooking the obvious, I can’t tell what causes the slideshow to jump back.

    Can you help? If you want to see it happen, try loading http://agilecreator.com

    The slideshow is on the home page and you’ll see it clearly jump from center to left…

    http://wordpress.org/extend/plugins/meteor-slides/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    The comments at the top of the stylesheet are broken, make sure the first line looks like this:

    /* plugin's default stylesheet.

    There is a typo in the class for the main slideshow div rules:

    .meteor-slide {
    	text-align: center;
    	margin: auto;
    	overflow: hidden;
    	padding: 0;
    	position: relative;
    	z-index: 1;
    }

    Update it to look like this and it should work:

    .meteor-slides {
    
    	margin: 0 auto;
    	overflow: hidden;
    	padding: 0;
    	position: relative;
    	z-index: 1;
    }
    Thread Starter erikvlie

    (@erikvlie)

    Thank you! The slideshow is now centered, but the buttons underneath were too much to the right.

    I changed the following:

    .meteor-buttons {
    	bottom: 0px;
    	left: 46%;
    	margin: 0;
    	position: absolute;
    }

    to

    .meteor-buttons {
    	bottom: 0px;
    	left: 40%;
    	margin: 0;
    	position: absolute;
    }

    That makes it perfect! Many thanks — I kept overlooking this.

    Plugin Author Josh Leuze

    (@jleuze)

    No problem!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Meteor Slides] Slideshow centers when loading, then jumps back to leftmost position’ is closed to new replies.