at first
Open Template - Edit HTML - Check at "Expand widget template"
Second
Backup your template, it's always being better to avoiding something from bad luck.
Third
Find these code
<div class='post-header-line-1'/>
<div class='post-body'>
fill it , under the upper code.
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
then , fill the code
<a expr:href='data:post.url'>Readmore »»</a>
</b:if>
after
<p><data:post.body/></p>
then it should be like this.
<div class='post-header-line-1'/>
<div class='post-body'>
<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>
<p><data:post.body/></p>
<a expr:href='data:post.url'>Readmore »»</a>
</b:if>
<div style='clear: both;'/>
Finally, fill these code on your post template on - format tab.
<div class="fullpost">
Code
</div>
note: <div class="fullpost"> code should be separate your post , so type the code if you feel that's the spot to divide.
From ~> http://templateportal.blogspot.com
No comments:
Post a Comment