• Very recent install of WordPress and Buddypress.

    Everything works fine with the theme accept when you view a blog post. The side bar on the right with the widgets moves all the way to the bottom of the site and aligns left. Some of it is even missing on the left side when it moves. Problem is noted in IE and Chrome, both updated versions.

    I’m no good at html, can only follow simple instructions to edit code.

    I suspect there is a problem with the .css file, but I’m not sure what I should be fixing.

    My site http://megaphone.say-it-loud.org.uk

    http://wordpress.org/extend/themes/simple-wp-community-theme/

Viewing 2 replies - 1 through 2 (of 2 total)
  • There is an extra </DIV> tag in themes/simple-wp-community-theme/single.php

    <?php endif; ?>
    
    		</div>
    
    		<?php do_action( 'bp_after_blog_single_post' ) ?>
    
    		</div><!-- .padder -->
    	</div><!-- #content -->
    
    	<?php locate_template( array( 'sidebar.php' ), true ) ?>
    
    <?php get_footer() ?>

    should be

    <?php endif; ?>
    
    		<?php do_action( 'bp_after_blog_single_post' ) ?>
    
    		</div><!-- .padder -->
    	</div><!-- #content -->
    
    	<?php locate_template( array( 'sidebar.php' ), true ) ?>
    
    <?php get_footer() ?>

    I too am having a sidebar issue. Only the main sidebar is showing and not others. When I edit it in themes I can see it. I just cant figure out why I cant see it on my site

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Simple WP Community Theme] Right sidbar widgets fail to stay in position ONLY when viewing b’ is closed to new replies.