0

嗨,我已经对我的 wordpress 博客的新闻内容进行了编码,我使内容向右浮动,日期和评论在内容的左侧浮动,现在除了一件事之外它完全浮动。

第一篇文章的日期和评论是一致的,但第二篇文章的日期和评论也与第一篇文章一致,而它应该与第二篇文章一致。第二个帖子下的日期和评论应该是第三个帖子的,这使得最后一个帖子没有日期时间或评论​​。下面的例子。

在此处输入图像描述

这是我的CSS

  #content {
width: 1070px;
}
.right{
position:relative;
float:right;
right:215px;
}

.left{
position:relative;
float:left;
left:200px; 
display:block;
}

.date{
width:80px;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px; 
clear:left;
}

.month {
color:#fff;
font-size:15px;
font-family:eurofurence;
text-transform:uppercase;  
}

.year {
color:#fff;
padding:0 0 7px 0;
font-size:30px;
font-family:eurofurence;
text-transform:uppercase;  
}

.commentbubble{
  background: url('http://bleedartmedia.com/mock/wp-content/themes/KellyRowland/images/commentb.png') no-repeat;
  width:40px;
  height:49px;
  padding:4px 0 0 14px;
 }
    .entry {
margin: 0px 0px 0px 0px;
padding: 0px 10px 0px 10px;
border-bottom: 0px solid #cccccc;
    font-family:eurofurence;
    font-size:17px;
    width:610px;
    background:#000;
}

    .entry-top {
margin: 0 0 0px 0;
padding: 0 0 0px 0;
text-align: left;

}

    .entry-top .entry-title {
color: #fff;
    font-family:eurofurence light;
    font-size:28px;
}

    .entry-top .entry-author {
font-style: italic;
}

    .entry-title {
margin: 0;
padding: 0;
font-size: 1.3em;
font-weight: bold;
line-height: normal;
font-stretch: narrower;
}

    .entry-title a:link,
    .entry-title a:visited {
color: #fff;
    font-family:eurofurence light;
    font-size:28px;
}

    .entry-title a:hover {
color: #3E7AB9;
text-decoration: none;
}

    .entry-content {
margin: 10px 0 10px 0;
padding: 0px 10px 10px 10px; 
    font-family:eurofurence;
    font-size:17px;
}

这是我的编码

      <div id="content">
      <?php while ( have_posts() ) : the_post() ?>

  <div class="date left">
      <div class='month'><?php the_date('M');?></div>
      <div class='year'><?php the_time('d');?></div>

     <div class="commentbubble">
   <?php comments_popup_link( __( '0', 'wpbx' ), __( '1', 'wpbx' ), __( '%', 'wpbx' ) ) ?>
      </div>
      Comments
    </div>


            <div class="entry right">
    <div class="entry-top">
            <h2 class="entry-title"><?php the_title() ?></h2>
    </div>
            <div class="entry-content clearfix">

        <div class="entry-content">
                <div id="text"><?php the_content() ?></div>
                </div>

            </div>
            <div class="entry-meta">

            </div>

    </div><!-- .post -->
      <br>
      <?php endwhile; ?>

    </div><!-- #content -->

任何人都有解决方案

4

2 回答 2

0

Try adding this to clear the float:

.date.left { clear: left; }
于 2012-10-02T23:08:15.327 回答
0

我猜你的 php while 循环在显示的 html 之外开始?我在这里要做的是确保您将 date-left 和 entry-right 包含在一个 div 中,并使用 php while 来重复 div。我认为您所要做的就是找到您的 while 循环开始的位置,添加一个 div,然后在它结束之前添加一个关闭 div。

<loop start>
<div>
....(divs containing entry and date here)
</div>
<loop end>
于 2012-10-02T21:09:28.537 回答