I use the <span class="fullpost"> tag to break my longer messages so
they don't all show up on the main page. This is my default post
template:
<p>Text above the break goes here.</p>
<span class="fullpost">
<p>Text below the break goes here.</p>
</span>
The following code is in my blog template:
<b:if cond='data:blog.pageType != "item"'>
<a expr:href='data:post.url' target='_blank'>Click here to read entire
post</a>
</b:if>
...
<style>
<b:if cond='data:blog.pageType == "item"'>
span.fullpost {display:inline;}
<b:else/>
span.fullpost {display:none;}
</b:if>
</style>
This has always worked the same for a number of years ... clicking on
'Click here to read entire post' brings up the entire post in the same
window.
For the last 24 hours this has been behaving differently -- clicking
on 'Click here to read entire post' brings up the post, but in a
different window. I have not made any template changes in that time.
Any advice on why it's behaving differently?