Viewing 5 replies - 1 through 5 (of 5 total)
  • It looks like you got this fixed? With Twenty Ten and Twenty Eleven the other elements in the header are floated and those floats have to be cleared before the slideshow or the layout can break, but floating the slideshow as well works too!

    Thread Starter iselaespana

    (@iselaespana)

    Hi, no it still pushes about about 10 px to the right. How would I clearing the floats?

    Seriously thank you for a great plugin and response!

    No problem at all! The nav and slideshow containers are the same width, but the slideshow has a 30px left margin added in:

    .meteor-slides {
        margin-left: 30px;
        overflow: hidden;
        padding: 0;
        position: relative;
        z-index: 1;
    }

    Without that margin they should line up perfect, I’d remove that.

    You can remove the float and margin rules in your theme stylesheet too:

    .meteor-slides {
        float: left;
        margin: 0 auto;
    }

    This is going to cause the slideshow to float next to the nav and hang out of the page, to fix this and line up the slideshow right below the nav, clear the float on the nav by adding this right before the slideshow template tag in your header.php file:

    <div style="clear: both;"></div>
    Thread Starter iselaespana

    (@iselaespana)

    it worked!! Thank you so much for your help! I appreciate it!

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘meteor slide pushed to the right in firefox’ is closed to new replies.