我想在“阅读更多链接”中添加明确的浮动(在我的网站上说“Läsmer”,瑞典语) 在Wordpress(循环)。
这是我的循环,
<?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)
答案 0 :(得分:0)
为什么不编辑CSS文件并添加
clear:both
或clear:left
或clear:right
属性
对于.meta-nav
类?
答案 1 :(得分:0)
添加
.meta-nav
{clear:left | both | right;
}
到你主题css表中的style.css
。