首先要解決 CSS 樣式表的問題.
以為全文以 position : absolute 時內文需要有 min-height .
增加以下 CSS
[css]
<style>
.post_content{
position:relative;
min-height:300px;
height:auto !important;
>height:300px;
>overflow:visible;
}
</style>
[/css]
搜尋 template 中的 index.php
<?php the_content(”); ?>
修改為
[php]
<div class="post_content"><?php the_content(”); ?></div>
[/php]