它有一个非常基本的代码,我确定我错过了一些东西。它是什么?
<div class="span8" id="pagecs">
<?php the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
<?php the_content(); ?>
</div>
</div>
#pagecs {
font-family: 'Goudy Bookletter 1911', serif;
color: #405160;
}
答案 0 :(得分:0)
不推荐使用align属性,因此我们将使用CSS:
.alignLeft {float: left;}
答案 1 :(得分:0)
#pagecs .entry-content img {
float:left;
}
将图像左对齐...如果需要,可以在其上放置一些边距用于间距