特定点后3列网格断开

时间:2014-02-25 15:08:49

标签: php html css wordpress zurb-foundation

我有一个基于F5(Reverie)主题的WP博客。目前使用子主题来处理自定义样式等

此外,我使用Infinite Scroll(JetPack插件的一部分)来管理主页和归档页面的分页。

问题 它在第一组帖子的初始加载(设置为6)时看起来很好。当我单击按钮触发无限滚动时,再加载六次(仍然看起来很好)。加载另一个并且3列网格开始中断(丢失浮动)。起初我以为它可能是用于帖子的图像。我甚至尝试停用一些我认为可能成为问题的插件;没有运气。

我也尝试调整帖子的css(高度,最小 - 最大)以查看是否有帮助。不行。

home.php

<div class="row" id="content-home">
    <div class="small-12 columns" id="content" role="main">
        <h5 style="margin-left:15px;">Latest Posts</h5>
        <?php query_posts('offset=1'); ?>
        <?php if ( have_posts() ) : ?>

            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>
                <?php get_template_part( 'content', get_post_format() ); ?>
            <?php endwhile; ?>

            <?php else : ?>
                <?php get_template_part( 'content', 'none' ); ?>

        <?php endif; // end have_posts() check ?>

    </div>
</div>

content.php

<article id="post-<?php the_ID(); ?>" <?php post_class('index-card small-12 large-4 columns'); ?>>
<header>
    <a href="<?php the_permalink(); ?>"><?php if ( has_post_thumbnail() ) {the_post_thumbnail('large'); } ?></a>        
</header>
<div class="entry-content">
    <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    <?php bvblog_small_meta(); ?>
</div>

1 个答案:

答案 0 :(得分:0)

.row .small-12.columns#content article {
    display: inline-block;
    float: left !important;
    min-height: 540px;
}