Not signed in (Sign In)

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

    • CommentAuthormaestro
    • CommentTimeMar 12th 2009 edited
     
    Hi. My site looks perfect in ie6, ie7, firefox, chrome, safari, opera etc. I embedded plogger directly into my site and its perfect. When I get to the final level (album view, where the photo is the biggest) it looks like the php is generating some strange xhtml, as my footer gets placed inside the plogger wrapper div, on all the other plogger views its outside the plogger wrapper div where it should be, like on the rest of my site. Thanks. Lenner
    • CommentAuthormaestro
    • CommentTimeMar 12th 2009
     
    I see kanjigirl had exactly the same issue that is still unresolved
    http://www.plogger.org/forum/discussion/1284/album-page-only-displaces-my-css-footer/#Item_1
    • CommentAuthormaestro
    • CommentTimeMar 12th 2009
     
    Ok, I have made some headway. I looked at the header.php file in the lucid themes directory and started commenting the divs so I could see where they end and start. It seems the #main_container and #breadcrumbs dont have closing div tags. If I add a closing div tag to #breadcrumbs or #main_container the problem of the footer thats displaced inside the wrapper div goes away, but the levels higher up dont display right (main plogger view etc). So I convinced that there is a issue with divs not being closed or order of some divs.
    •  
      CommentAuthorsidtheduck
    • CommentTimeMar 12th 2009
     
    maestro,

    Do you have a link to your site? I could try to help you debug where the closing divs are missing.
    • CommentAuthormaestro
    • CommentTimeMar 17th 2009
     
    Hi Sid, the thing is if you fix it for the final album level view, it breaks for the rest of the views. So I would say that its only on the final level view, that the php generates some wrong xhtml.

    http://www.personal.co.za/perisecure/plogger-error/gal.php
    •  
      CommentAuthorsidtheduck
    • CommentTimeMar 17th 2009
     
    Try this, maestro,

    Open picture.php from the themes/ folder under the theme you are using and find the following code:
    // display comments for selected picture
    print plogger_display_comments();
    print '</div>';

    }
    } else {
    print "No such image";
    };
    plogger_get_footer();
    ?>

    and change it to read:
    // display comments for selected picture
    print plogger_display_comments();
    print '</div></div>';

    }
    } else {
    print "No such image";
    };
    plogger_get_footer();
    ?>
    • CommentAuthormaestro
    • CommentTimeMar 18th 2009
     
    Hi Sid, it works perfectly, thanks! So there was definitely a closing div missing. And I assume by your fix that picture.php generates the xhtml for the final level image view? Is this a known bug? I just want to say thank you again for your quick support, considering that I don't pay for support. Lenner