• Hi everyone,

    Trying to get Buddypress to work on my Block theme wp site and it’s giving me an absolutely awful headache.

    The margins are definitely messed up– it’s a theme with a left sidebar and what’s happening is that all of the content is being pushed down below the sidebar, leaving a blank space next to the sidebar in the main body, where the content should be.

    Here’s the html for the Block theme’s index.php document:

    <?php get_header(); ?>

    <div id=”contentright”>

    <div class=”postarea”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

    <h1><?php the_title(); ?></h1>

    <div class=”postauthor”>
    <p><?php _e(“Posted by”, ‘organicthemes’); ?> <?php the_author_posts_link(); ?> on <?php the_time(‘l, F j, Y’); ?> · #comments”><?php comments_number(‘Leave a Comment’, ‘1 Comment’, ‘% Comments’); ?> <?php edit_post_link(‘(Edit)’, ”, ”); ?></p>
    </div>

    <?php the_content();?>
    <div style=”clear:both;”></div>
    <?php trackback_rdf(); ?>

    <div class=”postmeta”>
    <p><?php _e(“Filed under”, ‘organicthemes’); ?> <?php the_category(‘, ‘) ?> · <?php _e(“Tagged with”, ‘organicthemes’); ?> <?php the_tags(”) ?></p>
    </div>

    <div class=”postcomments”>
    <?php comments_template(”,true); ?>
    </div>

    <?php endwhile; else: ?>
    <p><?php _e(“Sorry, no posts matched your criteria.”, ‘organicthemes’); ?></p>
    <?php endif; ?>

    </div>

    </div>

    </div>

    <!– The main column ends –>

    <?php get_footer(); ?>

    Any help you can offer would be fabulous. I’m about at the end of my rope and need to get this polished and ready to go in 24 hours! I’ve considered creating a child theme but since the theme isn’t mine, I don’t think I can/should do that.

    THANKS SO MUCH!

    http://wordpress.org/extend/plugins/bp-template-pack/

  • The topic ‘[Plugin: BuddyPress Template Pack] BuddyPress on Block Theme — please help!’ is closed to new replies.