okay i just found out what i needed to search for in google and that's "read more". so i did that and it returned a bunch of results, which is great (like this one
http://help.blogger.com/bin/answer.py?hl=en&answer=42215)
HOWEVER, the problem with this hack is that now whenever i post i am required to use the blogger posting page to do it, plus i have to post in html format. what im wanting is the above hack to work with Windows Live Writer or some other blogging software.
and if anyone cares....here is what I have in my xml template file in blogger (the section that needs to be edited anyway):
<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>
and according to the link i provided above, it should be edited to look like this:
<b:if cond='data:blog.pageType == "item"'>
<style>#fullpost{display:inline;}
<b:if cond='data:blog.pageType == "item"'>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if></style>
<p><data:post.body/></p>
<b:else/>
<style>#fullpost{display:none;}</style>
<p><data:post.body/></p>
and then the documentation says put the next batch of code "Add the following code to your template, somewhere after the <$BlogItemBody$> or <data:post.body/> tag:" so thats what i did:
<b:if cond='data:blog.pageType == "item"'>
<style>#fullpost{display:inline;}
<b:if cond='data:blog.pageType == "item"'>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if></style>
<p><data:post.body/></p>
<b:else/>
<style>#fullpost{display:none;}</style>
<p><data:post.body/></p>
<b:if cond='data:blog.pageType != "item"'><br />
<a expr:href='data:post.url'>Read more!</a>
</b:if>so im obviously doing something wrong as its not working. help!