Add Auto Read More With thumbnails for blogger posts fully working for almost all Templates In Blogger

Procedure:
Step 1. Find (CRTL + F) this code:
</head>
</head>
Step 2.Copy and paste following code with above </head>:
<script type=text/javascript>
var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 120;
img_thumb_width = 120;
</script>
<script type=text/javascript src=http://widgets.way2blogging.org/blogger-widgets/w2b-auto-readmore-blogger.js ></script>
The code in red sets how the post summarys are displayed.Remember if a post has an image it will be re sized into a thumbnail to be displayed beside the summary.If the post does not have an image just a text summery will be displayed.
summary_ noimg= 430; --> The length of the summary if the post does not have a thumbnail.
summary_img = 340; --> The length of the summary if there is an image in the post that will be converted into a thumbnail.
img_thumb_height = 120; --> The height in pixels of the thumbnail.
img_thumb_width = 120; --> The width in pixels of the thumbnail.
Step 3. Find the following code by using Ctrl+F key.
<data:post.body/>
Step 4. Replace the following code with above code.
Note: if you found three codes like above in your template replace the following code with all.
<b:if cond=data:blog.pageType == "item">
<data:post.body/>
<b:else/>
<b:if cond=data:blog.pageType == "static_page">
<data:post.body/>
<b:else/>
<div expr_id="summary" + data:post.id>
<data:post.body/>
</div>
<script type=text/javascript>
createSummaryAndThumb("summary<data:post.id/>");
</script>
<div style=clear: both;/>
<span class=rmlink style=font-weight:bold;padding:5px;float:right;text-align:right;><a expr_href=data:post.url >Read more ... </a></span>
</b:if>
</b:if>
You can change the highlighted text with Continue Reading, Read Full etc.
Step 5. Save Your template and enjoy Auto read more.
<script type=text/javascript>
var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 120;
img_thumb_width = 120;
</script>
<script type=text/javascript src=http://widgets.way2blogging.org/blogger-widgets/w2b-auto-readmore-blogger.js ></script>
The code in red sets how the post summarys are displayed.Remember if a post has an image it will be re sized into a thumbnail to be displayed beside the summary.If the post does not have an image just a text summery will be displayed.
summary_ noimg= 430; --> The length of the summary if the post does not have a thumbnail.
summary_img = 340; --> The length of the summary if there is an image in the post that will be converted into a thumbnail.
img_thumb_height = 120; --> The height in pixels of the thumbnail.
img_thumb_width = 120; --> The width in pixels of the thumbnail.
Step 3. Find the following code by using Ctrl+F key.
<data:post.body/>
Step 4. Replace the following code with above code.
Note: if you found three codes like above in your template replace the following code with all.
<b:if cond=data:blog.pageType == "item">
<data:post.body/>
<b:else/>
<b:if cond=data:blog.pageType == "static_page">
<data:post.body/>
<b:else/>
<div expr_id="summary" + data:post.id>
<data:post.body/>
</div>
<script type=text/javascript>
createSummaryAndThumb("summary<data:post.id/>");
</script>
<div style=clear: both;/>
<span class=rmlink style=font-weight:bold;padding:5px;float:right;text-align:right;><a expr_href=data:post.url >Read more ... </a></span>
</b:if>
</b:if>
You can change the highlighted text with Continue Reading, Read Full etc.
Step 5. Save Your template and enjoy Auto read more.