0

我想在 Wordpress(循环)中的“阅读更多链接”(它在我的网站上显示“Läs mer”,瑞典语)添加清晰的浮动。

这是我的循环,

<?php query_posts($query_string . '&cat=-3'); ?>
        <ul id="customStart" class="group">
             <?php query_posts('showposts=55&cat=5,');
                        if (have_posts()) : ?>
                    <?php while (have_posts()) : the_post(); ?>
                        <li>
                       <div class="blogPostInfo"><?php the_time('l, F jS, Y') ?><div class="fltLeft"> | <?php the_category(', ') ?></div></div>
                      <div id="startBg">
                       <?php the_post_thumbnail('start-pic'); ?>
                        </div>
                            <h2><?php the_title(); ?></h2>
                         <?php the_content( __( '<span class="meta-nav"> Läs mer</span>', 'twentyten' ) ); ?>
                        </li>
                        <?php endwhile; ?>
                     </ul>
                     <?php endif; wp_reset_query();?>

http://www.missbee.se/eliteRehab2/


查看网站的下部以找到我要清除的按钮;O)

4

2 回答 2

0

为什么不编辑 CSS 文件并添加

clear:bothclear:leftclear:right财产

上课.meta-nav

于 2012-06-12T12:53:07.813 回答
0

添加

.meta-nav
{clear:left | both | right;
} 

到您style.css的主题 css 表中。

于 2012-06-12T12:54:48.237 回答