My question is a fairly simple one. I'm using Blogger for my blog and I've already modified my blog template (the original Minima template) extensively. Now, I'm wondering if it's possible to change the "« Previous / Next »" links at the top and bottom of blog posts, into the previous/next page's title. The only example I can think of would be a ScienceBlogs blog such as Pharyngula, where the links are displayed as "« This is the title of the previous post | Main | This is the title of the next post »". I've already changed the original texts of "Older Post / Newer Post" to "« Previous / Next »".
Is this even possible? And if so, please help this HTML-deficient noob. =(
* * * * * *
What I do know: this is the relevant portion of the template HTML code:
<b:includable id='nextprev'>
<div class='blog-pager' id='blog-pager'>
<b:if cond='data:newerPageUrl'>
<span id='blog-pager-newer-link'>
<a class='blog-pager-newer-link' expr:href='data:newerPageUrl' expr:id='data:widget.instanceId + "_blog-pager-newer-link"' expr:title='data:newerPageTitle'>[color="#FF0000"]Next Post »[/color]</a>
</span>
</b:if>
<b:if cond='data:olderPageUrl'>
<span id='blog-pager-older-link'>
<a class='blog-pager-older-link' expr:href='data:olderPageUrl' expr:id='data:widget.instanceId + "_blog-pager-older-link"' expr:title='data:olderPageTitle'>[color="#FF0000"]« Previous Post[/color]</a>
</span>
</b:if>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'>
<data:homeMsg/>
</a>
<b:else/>
<b:if cond='data:newerPageUrl'>
<a class='home-link' expr:href='data:blog.homepageUrl'>
<data:homeMsg/>
</a>
</b:if>
</b:if>
</div>
<div class='clear'/>
</b:includable>The red bits are the parts I've already modified; they are the visible link texts.
That's all I can think of at the moment. If anyone needs more info, I'll be happy to provide. Thanks in advance.

Help

Back to top









