Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter alpha_coop

    (@alpha_coop)

    Oh I should have mentioned that we used Artisteer to create the basics of the theme we are using

    Plugin Author Josh Leuze

    (@jleuze)

    You’re welcome, did you get this figured out, it is working fine for me in IE9.

    Thread Starter alpha_coop

    (@alpha_coop)

    Hi, thanks so much for the reply! ??

    It is working perfectly in IE 9 now, just not in IE8 — do you have any suggestions as to what we could do to fix this? We’re really stumped as to why it’s not working :/

    Plugin Author Josh Leuze

    (@jleuze)

    It’s tough to testing things like this out in old browsers that don’t have in inspector so you can’t really see the elements.

    Since there are a few elements overlapping in the header, I’d suggest giving each a different background color so you can see how they are all placed in IE8, the slideshow might just be hidden behind something. This should be pretty easy to spot if the nav is red and the logo is green.

    There are a few things that I spotted that might be causing issues.

    One is this element that is being added after the header:

    .art-header:after {
        background-position: center center;
        background-repeat: no-repeat;
        content: " ";
        display: block;
        height: 300px;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }

    I’m not sure what that is even for, but I can see how it might not layout properly in IE8.

    Also, there is a clear after the header:

    <div class="cleared reset-box"></div>

    But it has a table display, try removing this and seeing what happens:

    .reset-box {
        display: block;
        overflow: hidden;
    }
    Thread Starter alpha_coop

    (@alpha_coop)

    tried that, no change ??

    why oh why does IE 8 even exist!? boo

    Plugin Author Josh Leuze

    (@jleuze)

    You could try simplifying the header, temporarily remove the logo and navigation so just the slideshow is in the header. You might find that one of those other elements is causing this problem and then you can narrow it down.

    Also, you can use Firebug Lite in IE to take a closer look at it.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Plugin: Meteor Slides] Amazing plugin, thank you! But problems with IE :(’ is closed to new replies.