是不是偶爾文章太長或是圖片太多會把之前的文章都擠到下面去?
這個在 wordpress, 無名等其他部落格才有的功能
現在在 blogger 也能實現了!

1. First, go to your Dashboard, then Template, then Edit HTML
(例)


2. Before you start, check the "Expand widget Templates" (展開小裝置範本) option.
(例)


3. Use "Ctrl+F" or 編輯>>尋找文字 to search for </head>
(例)



4. Paste the following code above </head>. Also, please note that you can change "Read More" to whatever you like.
<script type="text/Javascript">
function hidePost(postUrl)
{
var label=document.getElementById("fullpost");
if(label!=null){
eA = document.createElement("a");
eA.setAttribute("href",postUrl);
eA.setAttribute("title"," Read More ");
eA.appendChild(document.createTextNode(" ...Read More "));
eB = document.createElement("p");
eB.setAttribute("id","read-more");
eB.appendChild(eA);
label.parentNode.appendChild(eB);
label.parentNode.removeChild(label);}
}
</script>

(例)


5. Now,use Ctrl+F or 編輯>>尋找文字 to search for
<p><data:post.body/></p>
(例)


6. Replace
<p><data:post.body/></p> with the following code:
<p><data:post.body/></p>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:post.url'>
<script type='text/javascript'>hidePost('<data:post.url/>');</script>
</b:if>
</b:if>
(例)


7. From now on, whenever you make a post and want to hide a specific portion of the post, just insert the following:
<div id="fullpost"> Your Text</div>
(例)


source: http://chagg.blogspot.com/2006/10/blogger-beta.html