• Resolved kvangelo

    (@kvangelo)


    Hi,
    I had ‘meteor slides’ working on my site. Few days ago, I installed a newer version of this plugin and now it seems to be working fine in IE, but not in Chrome.

    I get a small bar where the slides should be, but not the full slide.

    Is there a solution to this problem ?

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

    (@jleuze)

    Hi kvangelo, can you post a link to the page you are having this problem on?

    Thread Starter kvangelo

    (@kvangelo)

    Thanks for your response JLeuze.
    http://www.mmconcepts.be/hendrickx-smeuninx/

    Plugin Author Josh Leuze

    (@jleuze)

    The issue here is that the title and description are floating and causing the slideshow to float as well, which is pushing it over far to the right.

    If you clear these floats, it should work fine.

    In your theme’s stylesheet you could see a line that looks like this, around line 195:

    #access2 {
    background:#000000 none repeat scroll 0 0;
    display:block;
    float:left;
    margin:0 auto;
    width:940px;
    }

    Change it to look like this and it should clear those floats, moving the slideshow into the correct position:

    #access2 {
    background:#000000 none repeat scroll 0 0;
    clear:both;
    display:block;
    float:none;
    margin:0 auto;
    width:940px;
    }
    Thread Starter kvangelo

    (@kvangelo)

    Thanks for helping me on this one Jleuze.
    My problem is solved now.

    Plugin Author Josh Leuze

    (@jleuze)

    No problem, glad to help!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘[Plugin: Meteor Slides] Not working since last update’ is closed to new replies.