Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

  1.  
    Hi all,

    Plogger's a great program, and I'm so glad it integrates, the PHP include is a cinch... in Firefox and Safari. As per usual, Internet Explorer is screwing me up. I have a header + two column layout going, made with divs, and when I integrate Plogger in, IE ignores the side-by-side columns and stacks them instead. This doesn't usually happen for me, because usually when I put things in the content div, it keeps with the design. This time, however, I suspect that Plogger has something going on in its own CSS that makes it so it can't fit in my content div?

    To make this clearer, my test site is currently running at: http://zinc.phpwebhosting.com/~kyleroyphoto/photo2.php . Try it out in IE and you'll see what I mean.

    Here's my CSS. (If it looks sloppy, it's because I've been poking around and copying/pasting so much tonight trying to make some magic number fix this IE problem.)

    body{

    background-color : #EEEEEE;
    text-align: center;
    }

    #container{
    overflow:hidden;
    width:800px;
    text-align: left;
    height: 100%;
    }

    #wrapper{
    height: 100%;
    position: relative;
    margin: auto;
    text-align: left;
    border-top: 0px solid #000000;
    border-bottom: 0px solid #000000;
    border-left: 0px solid #000000;
    border-right: 0px solid #000000;
    visibility: visible;
    overflow: visible;
    width: 800px;
    display: inline; /* So IE plays nice */
    }
    #gallery{
    width:78%;»
    /* The width and color of the rail */
    margin-right:-148px; /* Hat tip to Ryan Brill */
    float:right;
    height: 100%;
    min-height: 100%;
    overflow: visible;
    visibility: visible;
    }
    #nav{
    width:17%;
    float:left;
    }

    }


    Any ideas on what's making it do this? Thanks in advance!
    •  
      CommentAuthorsidtheduck
    • CommentTimeSep 11th 2008
     
    kyleroyphoto,

    I think it has to do with your #wrapper CSS in your 'style.css' (there's also a #wrapper id in gallery.css). Is this for something else on your site? If so, you should either change your site's HTML id and CSS to something like #outer_wrapper or change the Plogger HTML id and CSS to something like #gallery_wrapper so you don't have colliding ids and CSS.