2013-10-14 19 views
0

它有一個非常基本的代碼,我敢肯定我錯過了一些東西。它是什麼?文字不包裹wordpress文章中的圖像

<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; 
} 
+1

你想[CSS浮動](https://開發人員.mozilla.org/EN-US /文檔/網絡/ CSS /浮動)。 –

+0

請在提問有關CSS時發佈HTML,而不是PHP。 – isherwood

回答

0

的斯特凡在評論中說,你缺失的CSS花車例如:

#pagecs .entry-content img { 
    float:left; 
} 

將調整留下的圖像..併爲好措施,你可以放置一些利潤空間,如果你需要

+0

愛這個網站。一切正常。謝謝! – sharls

0

align屬性已被棄用,因此我們將使用CSS:

.alignLeft {float: left;}