Not signed in (Sign In)

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

    • CommentAuthorasherlew
    • CommentTimeAug 26th 2006
     
    Can someone take a look at my gallery and let me know what I'm missing?

    The problem is the content on the page is still using the template's css, not Plogger's. The problem with that is, I can't edit the CSS unless I do it for the whole site.

    My Plogger site is in /gallery, and I changed the index in /gallery per your instructions.

    Any help is appreciated. Just trying to get embedded Plogger to recognize it's own CSS vs the CSS of my site.

    <?php get_footer(); ?>
    •  
      CommentAuthorBen
    • CommentTimeAug 26th 2006 edited
     
    oh nvm i didn't read what you had written... ah.. jas
    • CommentAuthorasherlew
    • CommentTimeAug 27th 2006
     
    Solved ... was missing a closing </div> tag in new index.php.

    Amazing that I haven't seen that anywhere! Finally recognized the problem when reading a forum on sidebar implementation ... thanks ernie!

    FYI, here's the solution: create a new file called index.php and paste this in:

    <?php require('../wp-blog-header.php');
    require("gallery.php"); ?>
    <?php get_header(); ?>
    <div class="ncol">

    <?php the_gallery_head(); ?>
    <?php the_gallery(); ?>

    </div>

    Now replace this with the index.php in your /gallery folder! DONE!