php - Facebook Comments section gets truncated -
i have issue facebook comments on page of website: http://www.twisted-perfectionism.com/social-media-network-comparison/
the comment section gets truncated. can see 1 comment , 3/4. there more coments below, don't appear.
what cause of this? don't :(
please help!
here code single.php:
<?php get_header(); ?> <div id="page-<?php the_id(); ?>" class="panel box"> <div class="in"> <?php while ( have_posts() ) : the_post();?> <?php $format = get_post_format(); get_template_part( "formatz/".$format ); if($format == "") get_template_part( "formatz/standard" ); echo do_shortcode('[shareaholic app="share_buttons" id="xxx"]'); do_action('seo_facebook_comments'); ?> <?php endwhile; ?> </div> </div> <?php get_footer(); ?>
the problem max-height: 206px;
style set on line 159 of style.css file located in wp-content/themes/selfless/style.css. prevents facebook comments section being higher 206px , hence hides overflow below height. deleting line show of comments.
Comments
Post a Comment