January 12, 2009
We're going to customize our Blogger footer a bit. To be more precise, the links Newer Post, Home and Older Post that we can find on the very bottom of the post.

WHAT ARE THOSE?
For those who do not know, Newer Post, Home and Older Post are links that appear on the bottom of the posts. When visitors click on, lets say, Older Posts, it will take them to the Page with the set of your previous posts.
The number (set) of the posts on this page will be the same as the number of the Posts on your main page (don't think that a click on the Older Posts will open ALL of your Posts!)
You can adjust the number of the posts on the main page going to LAYOUT ► PAGE ELEMENTS ► and clicking on Edit in the BLOG POSTS box.....
WHY IS THIS SO IMPORTANT? IS IT AT ALL?
It is. This is a great navigation tool for your visitors. If you make these links more visible and eye catching, people will click on them, and will be dragged into the maze of your Blog posts...and stay there forever and ever...
Ok, seriously, I suggest doing this.
SO, WHAT CAN I DO?
This is a fun part. You can customize these links in Blogger in a few ways:
► changing the text of Newer, Older, Home links
► placing a picture beside them (a small icon, arrow, or whatever...)
► placing a picture (image) instead of these links
First, back up your Blogger template. Avoid the worst. Put safety first.
When you've done this, let's identify the code we're going to mess around with....Go to:
LAYOUT ► EDIT HTML ► click on Expand widget templates in the upper right corner....Locate this part of the 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'><data:newerPageTitle/></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'><data:olderPageTitle/></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>
...now, as you can see, there are three groups, one for each link:<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'><data:newerPageTitle/></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'><data:olderPageTitle/></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>
► pink represent the code for Newer Post link
► orange for the Older Post
► green for Home
► white wraps all of these up...
◄Changing the text of the links►
You need to REPLACE following parts in original code with ANY TEXT you like:► replace <data:newerPageTitle/> with, for example NEXT POST
► replace <data:olderPageTitle/> with, for example PREVIOUS POST
► replace <data:homeMsg/> (only the first one) with, for example HOMEPAGE
Click here to see the complete 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'>NEXT POST</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'>PREVIOUS POST</a>
</span>
</b:if>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'>HOMPAGE</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>
<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'>NEXT POST</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'>PREVIOUS POST</a>
</span>
</b:if>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'>HOMPAGE</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>
◄Placing icon/picture beside links►
You will have to INSERT the code for picture:<img src='http://i42.tinypic.com/zn4qic.jpg'/>
...replace the part in orange with URL of your hosted picture......use small icons...
Click here to see the complete 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'><img src='http://i42.tinypic.com/zn4qic.jpg'/><data:newerPageTitle/></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'><data:olderPageTitle/><img src='http://i40.tinypic.com/sfcox4.jpg'/></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>
<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'><img src='http://i42.tinypic.com/zn4qic.jpg'/><data:newerPageTitle/></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'><data:olderPageTitle/><img src='http://i40.tinypic.com/sfcox4.jpg'/></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>
◄Picture/image INSTEAD of links►
This one is my favorite! You can place any kind of picture you want! All you have to do is use this code for the pic:<img src='URL ADDRESS'/>
...just replace the part in pink, with the URL of your hosted picture......and in code, REPLACE the original link code for text with picture code:
► replace <data:newerPageTitle/> with the pic for newer (next) posts
► replace <data:olderPageTitle/> with the pic for older (previous) posts
► replace <data:homeMsg/> (only the first one) with the pic for homepage...
Click here to see the complete 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'><img src='URL ADDRESS'/></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'><img src='URL ADDRESS'/></a>
</span>
</b:if>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'><img src='URL ADDRESS'/></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>
<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'><img src='URL ADDRESS'/></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'><img src='URL ADDRESS'/></a>
</span>
</b:if>
<b:if cond='data:blog.homepageUrl != data:blog.url'>
<a class='home-link' expr:href='data:blog.homepageUrl'><img src='URL ADDRESS'/></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>
That's about it....Oh yes, one more thing:
◄Switch places of the links►
If you find the position of Newer/Older post awkward (I do), you can switch their places easily. Making Newer posts appear on the RIGHT side, and Older posts on the LEFT side (like a book). To do this, go to LAYOUT ► EDIT HTML, and find the following part in code (CSS style):
#blog-pager-newer-link {
float: $startSide;
}
#blog-pager-older-link {
float: $endSide;
}
...just switch the float style, so it will look like this:float: $startSide;
}
#blog-pager-older-link {
float: $endSide;
}
#blog-pager-newer-link {
float: $endSide;
}
#blog-pager-older-link {
float: $startSide;
}
...Ok, this is really it now....be creative, you can do whatever you imagine...float: $endSide;
}
#blog-pager-older-link {
float: $startSide;
}
If you need help, or have some ideas, ask, share...
Smile!
















123 comments:
guys can you help me?? how to insert code (html) into post, i failed when try to copy paste code directly into post
Hey Chibbie....
You need to convert it, (the brackets, to be more precise), so that blog doesn't read it as a command...You have online converter here.
► paste your code there
► hit Encode
► copy the encoded code and Paste it into Blog post
Smile!
Awesome and useful information as always! Thanks Pocket.
Thanks bro it works. what about the box?? should i draw it??heehe sorry im blind of html code
To get the box for the code, you'll have to write some CSS for it, and wrap the code into div class of the same CSS when composing a post...
You have some tutorials on the web, I'm sure...or wait for mine..
Smile!
Thanks. I have got the idea how to customize blogger template. Great work.
thank you so much!
Hey pocket,
love your templates, but i have a little problem.
can't find the html tag you asked us to locate at all.
...am using your "article" template. would appreciate help! :D
^^Oh wait, I found it. Stupid me. Thanks!
i've done it..thx for ur info ^-^
It looks great qishi87....
Smile!
this is such a nice tutorial. never seen anything like this anywhere before. keep it up
Thanks chokilala...
Dear Pocket,
I'll like to put all the newer post home and older post all over on the right ( instead of places left/ middle/ right)
in the following order
older
home
newer
( I'm using minima stretch)
Just wondering if you could help?:-)
Thank you in advance
Does that make sense???!!
Dear Pocket - just wonder if youve happened to see my messages above?
Thank you in advance
Oh sh...I forgot about you! Yes, it's possible. You'll just have to put them in the little table, and change some CSS settings...I'll show you exactly what to do, but please, email me...It's a long piece of code to fit this comment..OK?
Smile!
will this work on a classic template?
I really really really don't know....Never used classic template...Sorry.
Theoretically, it should work, only the part of code would be different in classic template...but the procedure is the same - find the part that carries the data attribute, and customize it...
Smile!
Wow, you seem to look like a BLOGGER genious...Thanks, man! Will visit Your blog again, soon.
Don't say that! You'll make me blush....
I'm not genius, but I do know few tricks..
:]
Hi Pocket,
I'm trying to change mine to just a picture, how easy is that you gave all the directions and they are just great!!!! I have done everything you showed and all I get is the code from tinypic to show up no picture. Please tell me what I'm doing wrong. Thank you so much!!!
Kathy
Kathy,
I can suspect two things:
1. Misplacement of the code (you need to replace the CAPS with image URL, not everything)
<img src='URL ADDRESS'/>
2. or, you're using the wrong link from Tinypic. You need to use:
Direct Link for Layouts
Hope you'll fix it...
Pocket,
Thank you for getting back to me so soon. I'am using the direct link and still no picture and the placement of the code I'm putting it where it says previous post which now shows up as img src='http://tinypic on my blog. I'm still gonna play around with it.
Thanks again!!!
Hi Pocket! You're the best in blogger! I wanna thank you, my blog now really looks like I wanted it to look ---> http://moco-comics.blogspot.com/ but I have one more question, can I change the place where my "next, home, previous" buttons are shown to, say, over the title of the post, in the upper center? Thanks again!
Juanele,
it looks great! And I'm sorry, I've never tried to place it up there...If I do it, I'll share...
:]
Thanks anyways :) and if my blog looks great, it's thanks to your excellent tips and templates!
Where do you find the URLs for the pictures?
Paul
Eat Well. Live Well.
PurpleGreenPops.com
I've made the pics myself. If this is what you mean...
the newer and home links won't appear in the blog!!! :-o
sorry. i figured it out already. :))
Hey Pocket,
I love your blog. It's VERY helpful. I've been using it to make a few changes on my blog. I just tried to switch the awkward positioning of the newer/older posts & the $endSide code wouldn't work for some reason, so here's what I did instead:
#blog-pager-newer-link {
float: right;
}
#blog-pager-older-link {
float: left;
}
Just the right/left worked fine for me. Hope this helps for anyone who's having the same problem as I did.
Saimese,
..I'm glad you got that to work...And thanks, too!
:]
Farhan,
I am doing blog and i want to put my older posts first because i dont want to loose my home page from the face so how can i do it
Do you give permission to use those cute Gifs of yours ?
Error,
..of course...Just take them!
:]
Thanks, it looks just great on my page, right accorded to the template !
fgpv.blogspot.com
It could be interesting to explain how to make borders like yours, round on the corners. The way I used doesn't work with IE, only FF ( I don't complain but I guess I'm being thoughtful for my readers).
Keep your good work !
Instead of it saying "older" and "newer" (or whatever words you choose), is there a way to make it say the title of the posts instead?
Hi Pocket,
I used this great suggestion of yours in my blog. It all seemed to be working perfectly but one way or another it's gone astray. Maybe it has something to do with the fact that I put up one post per day, everyday. I've set up my blog to display only one post on the main page. The previous button should display the post of the day before. For some strange reason, when I skip to previous posts, the links behind the prev/next buttons there have strange links, saying to display max 20 results (instead of 1) and the next button sometimes links to the url of my blog itself (like the home button).
Do you have any idea what's going on? My blog is at www.muziekvragen.nl and as it is in Dutch: Vorige=previous, Volgende=next en the home button is called "Laatste". Your help would be greaty appreciated!
Dennis
Ok, here we go...
Is there a way to customize the location of the Newer + Older Posts links, i.e. header, sidebar etc?
Your time and very kind consideration is appreciated.
Diktat, just try to find the "nextprev" script and then place it wherever you wish.
In my blog, I put it both on top and on the bottom of the post, for example.
hi pocket
thanks for the great tutorial.. however, i also want to change my home link and tried to replace "data:blog.homepageUrl" with a specific post link, but it didn't work.
any idea how to change the "home link" so it links to a specific post?
thanks for your attention in advance.
thank you very much
how can I change the text color to them ??
thanxx
Does anyone know how to move the links? I'd love to have them appear at the top of the post instead of the bottom, but I can't figure out how to pull that off.
Is there any way to show the title of the linked post instead of "older post" or "newer post"?
Thx
hello pocket,
i have problem to move my older post,newer post and home link to bottom of the post..can u help me to solve it?
Hi, do you know the html code for classic template's button for older posts? (:
Love the tutorial..
but right now, i currently using Classic template..and i tried to put your code into it, but it didn't work..so i guess, you code is for xml template..
can u send me the code for classic template??
coz i desperately looking how to put newer + older post into my blog..
thanks ( angel_ckinanti@yahoo.com)
Thank you so much, Pocket, for your great work!
I would also like to use your great self-made arrows and home button. Hope that's ok?
I've been looking everywhere for something like this and I'm sure it's out there somewhere - but just can't find it. So: do you know a good place to find buttons, images and so on? I mean apart from all those hundred of thousand pages that pop up when googeling? Some secret hidden archive?! If so, please, please let me know.
Thanks again!
...hm. Would have been nice with your little arrow drawings - but now that I switched the position of the links, it doesn't work any more, of course, because they are now pointing in the wrong direction. But anyway: maybe there's a wonderful archive for these kind of buttons and icons somewhere? Alternatively: how did you make them yourself, what program? Thanks! And please keep up the great work :-)
your tutorials are the best! I've practically designed my entire blog using blogbulk's tips! thanks much :)
HI
I dont have CSS code
#blog-paper-newer-link {
float: $startSide;
}
even older also.. I am using 3rd party template.. pls help me
Thank you soo much for all this tips and steps I surley appreciated!
Tip for anyone using photobucket to store the pictures instead of links. The link you insert when this section: place the link of your picture that reads Direct link!
Thank you sooo much again Pocket!!
Thank you ever so much! I have one problem tho. The picture I put in isn't centered and it's driving me NUTS! Can I fix that some how?
http://helpingthebudgetusingcoupons.blogspot.com/
oops! Email helpingthebudgetusingcoupons @ gmail.com
Hi,
I saw that you gave permission to use your graphics of the house and arrows (so cute), but how do I do that? What code is for those particular ones?
THANKS!
You rock.. This guide makes it all so easy and is exactly what I need to free up some creativity in displaying my comics! Thank you!! (www.MartinKoala.com ..enjoy!)
Hi Pocket
I hope you can help with this... I'm using picture images as newer, older & home posts. On my own blog these work perfectly: http://1stfloorflat.blogspot.com/ but on this other blog I write (which is a link to their website): http://www.bladerubberstamps-blog.com/ I am having this trouble: two pages on, and the Newer pic will click back one page. One page on (so I want to go back just one page to arrive on the newest posts) it says the page on the blog does not exist. When I click on the Home pic, on any page, it takes me only to the top of that page, not the beginning of the blog. And if I click on the heading, which usually takes you back to the newest page of a blog, it also says the blog or the page does not exist. Use the back button on the tool: no problem. So it's obviously something to do with this being hosted on the web site.
Any ideas how to fix this? This happened with the Newer & Home even before I put the pix on.
As I said, I have done this on my own blog and it is PERFECT. So I really am very frustrated that I can't fix this.
Thaks so much.
hi pocket.
i'm trying to use this in my blog.
they appeared perfectly but the 'newer' button didn't came out.
i tried hard to find where is my mistake but my eyes couldn't found it.
would you like to help me?
thanks in advance.
hi
can u help me
how about to do it for classic template?
can u help me?
This is *awesome.* So helpful. And much easier/simpler than some other tutorials out there. Thanks!
thanks a lot for this; worked perfectly.
Nice (Y)
Dz wz really nic,Thk you vry much :)
For everybody:
Sorry for not answering to all of your questions....It's just too many of them.
I'll try to find some time to take care of everybody....
Smile!
hey!
would u mind telling me how to do this for classic template??
thanks =)
xilovehotchocx,
sorry, but I don't make tutorials on classic templates....
:[
hey POcket...I was wondering if we can change the older/newer links to show the title of the older/newer posts instead? I have been trying to do that by using "" - it does show the URL but it is all gibberish (which I think is Blogger's thing). How do I make it to show the TITLE of the said post? Please help.
Filmy,
...well, can't help you with this. In theory, it's possible, but in new Blogger XML templates, the "Older/Newer" link is linking to a SET of older/newer posts, not INDIVIDUAL post. I really don's see a way to achieve this...
I'll try a few things, and share. If successful.
Smile!
Dear Pocket,
thanks for this very helpful tutorial!
But...
Can you explain me how I can delete (don't show) ONLY the homepage link? I don't need it. When I make the following (I've found it in the web)...
#blog-pager {
text-align: center;
display:none;
}
(this is located in Comments in my Minima Stretch Template)
... the 'older posts' and 'newer posts' links are deleted too!
Can you help me?
Thanks!
Leo R.
www.firstthinkthendo.blogspot.com
P.S.: Sorry for my bad English, but I'm German. Hope you can understand me!
FIRSTthinkThando,
try this:
#home-link {
display:none;
}
Smile!
Thank you so much for this, Pocket! I love your blog :D
Hello Pocket,
Could you please take a look at my blog page ?
The thing is, I don't even have "older post" link on the page.
Help needed. Huuuu~
actually, I do have the "older post" link on the page, but it's situated in between the 1st "post title" and "about me" instead of at the bottom of the page as in normal templates. it is hardly visible to readers. it bugs me a lot.
Here's the link ;
http://publicsecretofzahruslan.blogspot.com/
I use "How To Use A Cute Font For Your Blogger Post Titles" and have figured out how to make it my sidebar titles, footer titles, header and description, what I want to know is if you know what the "selector" name would be so I can change the next home and previous titles to the same font style that I use, or if it's even possible? Thanks.
From Indonesia I say hello, and thank you very much.
Thankyou, you winner you
hai,,,
how if i want to change my older/new post link from top to bottom of the page??? TQ
I just want to say that your blog is amazing, the best I have seen until now about blogger, so clear, easy to understand. Thank you so much for all this help, Merci beaucoup, encore une fois super blog!
Thank you so much for the instructions. I finally got through the html to figure this out. Thanks!
Here is my final result:
http://www.thebrosource.com
y cant i find the code you state in my html?
I have trying to figure out how to do this forever! THanks!!!
Please help me! I put the code to switch Newer Post and Older post, but it doesn't have any effect! I have tried everything, but they won't move!
So useful and valuable.
Plastic Card
Hi pocket! ♥
I love your blog!
It help me A LOT!
I'd followed your tutorials & it all works!
Many thanks to u.
♥♥
regards,
hann
saving modifications of the template did'nt work, why. the preview function works normally, but when I clicked on Save nothing happened.. do you now why, shoud I delete the default widgets or what can I do?
I have a question...
When I put the image, the text for "older post" or "newer post" is still showing. Is there a way to delete that? and just leave the image?
Oh My God ! It's Work . Thanks A Lot . I Bet You Already Professional At This . Cause It Is Hard To Find This Things. LOL
Almost there! I just want to rearrange the items as you suggested (like a book), but I cannot find the right CSS code in my template.
Can you help?
Tracy
http://www.rustedgingham.com
heyy , check out my blog here : http://super-doubledealer.blogspot.com
* just now , im using blogskin and it had been changed to classic template. then , there's no OLDER POST or NEWER POST links . Help me
awesome!!!
Thanks for the help!
I want to move the Next / Previous to above the post instead of below it. Can you tell me where to paste the code to get this happening!!
See http://smintoncomic.blogspot.com/
This is VERY helpful. But I had a hard time swapping the next/previous links because my blog didn't have the pager "$startSide" "$endSide" codes anywhere in the coding.
So I played around with it and tried inserting those codes in a few different spots and finally got it to work in the following location:
.blog-pager {
background: $(paging.background);
}
.blog-pager-older-link, .home-link,
.blog-pager-newer-link {
background-color: $(content.background.color);
padding: 5px;
}
#blog-pager-newer-link {
float: $endSide;
}
#blog-pager-older-link {
float: $startSide;
}
.footer-outer {
border-top: $(footer.bevel) dashed #bbbbbb;
}
Just thought I would share this to save some time for anyone with a similar problem.
Thank you for the great tutorial. I was wondering if you could tell me how to delete the "home" and dotted border that is still there after I've added my images? Thanks...
http://inkandmouse.blogspot.com
I worked on it some more and figured it out...thanks again for sharing your tips!
Hi Is There any Way to Turn Older posts and Newer Posts Buttons to Next Post Title, And Older Posts Title ?
Waiting for your Response.:)
Thanks !
Hi!
I'm having a problem. i did everything you said, except the old gif still comes up. any help?
www.beeyum.blogspot.com
hello. i need help with changing the position of the 'older' and 'newer' post. i can't seem to locate the code u've shown. help pleaseee..
100th Comment! Just brilliant. Helped me so so very much :)
dear pocket , i did made it . but it didnt work out . can you teach me in a simple way ?
I also would like to be able to move the next/prev links to somewhere else on the page, or even have more than one instance of them (both below the post and above). I've searched high and low for a solution but can't find one. If you could figure out way to do it, I would be most grateful.
The way things are right now on my blog (botaram.com), the next/prev links go below the comments and get shifted down when the comment section expands, which is extremely annoying if one is browsing through. If I could even move them above the comments, that would help.
And while I'm asking for ponies and sixpence, if there were a way to make an image in the blog post also be a link to the next post (if extant), that would be amazing.
In any event, thank you so much for creating this informative site!
hi, great tutorial! i wonder if you could create a similar tutorial for the old blogger theme? i'd like to add an 'older posts, home, newer posts' links at the bottom but i don't know how to do it..
dear pocket can you share your favorite icon here
i like your blog very much. lots of blogger customization and tweaks. your tutorials are clear and precise. blogged about a similar topic on blog pager and linked this post as well. :-)
It gave a great help to my blog. I used it there.
http://nareshit.blogspot.com/
Thank you so much for this tutorial! It was very clear and helpful.
Is there any way to change the text that appears next to the cursor when you hover it over the links? I want it to say "next" and "last" instead of "older posts" and "previous posts."
Thanks in advance for any help!
http://www.memcnair.com/
how can i do all of this? i still don't get it
hey, I've tried it but it only works on the first page only :(
Wonderful tutorial :)
To those of you who can't find the code to switch the position of the Older and Newer post links, just find the
.blog-pager {
YourBlog'sCustomStuffHere-It'sDifferentForEveryone
}
and then insert this code beneath it:
#blog-pager-newer-link {
float: $endSide;
}
#blog-pager-older-link {
float: $startSide;
}
Hi! I have a question regarding the font size of the older and newer post button. Can I change it without changing the font size of the complete page?
Great! works brilliant i use your image above pctionary.blogspot.com Thanks pocket.
I want to add the post title instead of "next post". is it possible?
it ls a good article and love your words , so charming and make people learn a lot , thanks !
http://shinegold.blog.fc2blog.net/blog-entry-10.html
http://liveyourown.sier.no/2011/10/31/do-not-undermine-the-benefits-of-video-games/
Hello!
I love this newer-older posts template!
But I have another problem: I can't install it, I went to edit template, copy-pasted it but i can't see my oler posts in any way.
Do you know what the problem would be?
http://scintillasilk.blogspot.com/
This is my blog.
Thanks a lot for help!
Doesn't work for me! CAN'T FIND THIS:
".blog-pager {"
I have the awesome inc style
help...
Hello, This is great hack. Can you just help me in moving Older' and Newer' and Home" links to end of the post. Now its in after the comments. I just want them to be at the end of the post.
nice thank you
Hello,
Thanks for the excellent contribution to the discussion.
thank you~!
Say it...