Hi All Dear Visitors, Sorry For Being Late On Reply Your Messages And Comments, I'm Now Working With AllBlogTools.com Team On The Next Version Of AllBlogTools.com v3. The New Version Will Be Launched Soon, Please Wait For Our Surprises, We Are Working On A Great Features And Amazing, Powerful Version.
You Are Here You Are Here NowAllBlogTools > Blogger Tricks and Hacks > Blogger Tricks / Other > Adding Numbered Page Navigation Bar For Blogger

Post Details  Posted By Max On Monday, September 21st, 2009 In   Blogger Tricks and Hacks



Share

 
Adding Numbered Page Navigation Bar For Blogger

hi all, today we are going to learn how to add page navigation bar with numbers for blogspot blogs,

i’m sure that most of you have a lot of posts and the default blogger way to navigate between new post and old post is boring. what if your visitors wants to read for your oldest posts?
should he keep clicking on “older posts”, No.
You should apply this hack for your template, it’s one of the most useful blogger tricks ever.

so lets see how to do it.

Caution : Please backup your template (Download Full Template) Before making any changes.
Step 1: Adding The CSS Code.

Log into your blogger account and go to,
Dashboard >> Layout >> Edit html.
And find the following code.

]]></b:skin>

And just before it Add the next code

.showpageArea {padding: 0 2px;margin-bottom:10px;margin-top:10px;
}

.showpageArea a {border: 1px solid #505050;
color: #000000;font-weight:normal;
padding: 3px 6px !important;
padding: 1px 4px ;margin:0px 4px;
text-decoration: none;
}
.showpageArea a:hover {
font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;
}

.showpageNum a {border: 1px solid #505050;
color: #000000;font-weight:normal;
padding: 3px 6px !important;
padding: 1px 4px ;margin:0px 4px;
text-decoration: none;

}
.showpageNum a:hover {
font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;

}
.showpagePoint {font-size:11px;
padding: 2px 4px 2px 4px;
margin: 2px;
font-weight: bold;
border: 1px solid #333;
color: #fff;
background-color: #000000;

}

.showpage a:hover {font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;

}
.showpageNum a:link,.showpage a:link {
font-size:11px;
padding: 2px 4px 2px 4px;
margin: 2px;
text-decoration: none;
border: 1px solid #0066cc;
color: #0066cc;
background-color: #FFFFFF;}

.showpageNum a:hover {font-size:11px;
border: 1px solid #333;
color: #000000;
background-color: #FFFFFF;
}
Step 2: Adding The Java Code.

Find the next code Or some similar code

<b:section class=’main’ id=’main’ showaddelement=’yes’>
<b:widget id=’Blog1′ locked=’true’ title=’Blog Posts’ type=’Blog’/>
</b:section>

And After the </b:section> Tag add the next code.


<script type='text/javascript'>

var home_page_url = location.href; 


var pageCount=10;
  var displayPageNum=6;
  var upPageWord ='Previous';
  var downPageWord ='Next';


function showpageCount(json) {
  var thisUrl = home_page_url;
  var htmlMap = new Array();
  var thisNum = 1;
  var postNum=1;
  var itemCount = 0;
  var fFlag = 0;
  var eFlag = 0;
  var html= '';
  var upPageHtml ='';
  var downPageHtml ='';

 

 

for(var i=0, post; post = json.feed.entry[i]; i++) {

 var timestamp1 = post.published.$t.substring(0,19)+post.published.$t.substring(23,29);
  timestamp = encodeURIComponent(timestamp1);


  var title = post.title.$t;

 if(title!=''){
  if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
  if(thisUrl.indexOf(timestamp)!=-1 ){
  thisNum = postNum;
  }

  if(title!='') postNum++;
  htmlMap[htmlMap.length] = '/search?updated-max='+timestamp+'&amp;max-results='+pageCount;
  }
  }
  itemCount++;

  }

  for(var p =0;p&lt; htmlMap.length;p++){
  if(p&gt;=(thisNum-displayPageNum-1) &amp;&amp; p&lt;(thisNum+displayPageNum)){
  if(fFlag ==0 &amp;&amp; p == thisNum-2){
  if(thisNum==2){
  upPageHtml = '&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;/&quot;&gt;'+ upPageWord +'&lt;/a&gt;&lt;/span&gt;';
  }else{
  upPageHtml = '&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;'+htmlMap[p]+'&quot;&gt;'+ upPageWord +'&lt;/a&gt;&lt;/span&gt;';
  }

  fFlag++;
  }

  if(p==(thisNum-1)){
  html += '&lt;span class=&quot;showpagePoint&quot;&gt;'+thisNum+'&lt;/span&gt;';
  }else{
  if(p==0){
  html += '&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;/&quot;&gt;1&lt;/a&gt;&lt;/span&gt;';

 }else{
  html += '&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;'+htmlMap[p]+'&quot;&gt;'+ (p+1) +'&lt;/a&gt;&lt;/span&gt;';
  }
  }

  if(eFlag ==0 &amp;&amp; p == thisNum){
  downPageHtml = '&lt;span class=&quot;showpage&quot;&gt; &lt;a href=&quot;'+htmlMap[p]+'&quot;&gt;'+ downPageWord +'&lt;/a&gt;&lt;/span&gt;';
  eFlag++;
  }
  }
  }

  if(thisNum&gt;1){
  html = ''+upPageHtml+' '+html +' ';
  }

  html = '&lt;div class=&quot;showpageArea&quot;&gt;&lt;span style=&quot;COLOR: #000;&quot; class=&quot;showpageOf&quot;&gt; Pages ('+(postNum-1)+')&lt;/span&gt;'+html;

  if(thisNum&lt;(postNum-1)){
  html += downPageHtml; 
  }

  if(postNum==1) postNum++;
  html += '&lt;/div&gt;';


var pageArea = document.getElementsByName(&quot;pageArea&quot;);
  var blogPager = document.getElementById(&quot;blog-pager&quot;);

if(postNum &lt;= 2){
  html ='';
  }

for(var p =0;p&lt; pageArea.length;p++){
  pageArea[p].innerHTML = html;
  }

if(pageArea&amp;&amp;pageArea.length&gt;0){
  html ='';
  }

if(blogPager){
  blogPager.innerHTML = html;
  }


}


function showpageCount2(json) {

var thisUrl = home_page_url;
  var htmlMap = new Array();
  var isLablePage = thisUrl.indexOf(&quot;/search/label/&quot;)!=-1;
  var thisLable = isLablePage ? thisUrl.substr(thisUrl.indexOf(&quot;/search/label/&quot;)+14,thisUrl.length) : &quot;&quot;;
  thisLable = thisLable.indexOf(&quot;?&quot;)!=-1 ? thisLable.substr(0,thisLable.indexOf(&quot;?&quot;)) : thisLable;
  var thisNum = 1;
  var postNum=1;
  var itemCount = 0;
  var fFlag = 0;
  var eFlag = 0;
  var html= '';
  var upPageHtml ='';
  var downPageHtml ='';

 

var labelHtml = '&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;/search/label/'+thisLable+'?&amp;max-results='+pageCount+'&quot;&gt;';
  var thisUrl = home_page_url; 


for(var i=0, post; post = json.feed.entry[i]; i++) {

 var timestamp1 = post.published.$t.substring(0,19)+post.published.$t.substring(23,29);
  timestamp = encodeURIComponent(timestamp1);



  var title = post.title.$t;

 if(title!=''){
  if(itemCount==0 || (itemCount % pageCount ==(pageCount-1))){
  if(thisUrl.indexOf(timestamp)!=-1 ){
  thisNum = postNum;
  }

  if(title!='') postNum++;
  htmlMap[htmlMap.length] = '/search/label/'+thisLable+'?updated-max='+timestamp+'&amp;max-results='+pageCount;

  }
  }
  itemCount++;
  }

  for(var p =0;p&lt; htmlMap.length;p++){
  if(p&gt;=(thisNum-displayPageNum-1) &amp;&amp; p&lt;(thisNum+displayPageNum)){
  if(fFlag ==0 &amp;&amp; p == thisNum-2){
  if(thisNum==2){
  upPageHtml = labelHtml + upPageWord +'&lt;/a&gt;&lt;/span&gt;';
  }else{
  upPageHtml = '&lt;span class=&quot;showpage&quot;&gt;&lt;a href=&quot;'+htmlMap[p]+'&quot;&gt;'+ upPageWord +'&lt;/a&gt;&lt;/span&gt;';
  }

  fFlag++;
  }

  if(p==(thisNum-1)){
  html += '&lt;span class=&quot;showpagePoint&quot;&gt;'+thisNum+'&lt;/span&gt;';
  }else{
  if(p==0){
  html = labelHtml+'1&lt;/a&gt;&lt;/span&gt;';
  }else{
  html += '&lt;span class=&quot;showpageNum&quot;&gt;&lt;a href=&quot;'+htmlMap[p]+'&quot;&gt;'+ (p+1) +'&lt;/a&gt;&lt;/span&gt;';
  }
  }

  if(eFlag ==0 &amp;&amp; p == thisNum){
  downPageHtml = '&lt;span class=&quot;showpage&quot;&gt; &lt;a href=&quot;'+htmlMap[p]+'&quot;&gt;'+ downPageWord +'&lt;/a&gt;&lt;/span&gt;';
  eFlag++;
  }
  }
  }

  if(thisNum&gt;1){
  if(!isLablePage){
  html = ''+upPageHtml+' '+html +' ';
  }else{
  html = ''+upPageHtml+' '+html +' ';
  }
  }

  html = '&lt;div class=&quot;showpageArea&quot;&gt;&lt;span style=&quot;COLOR: #000;&quot; class=&quot;showpageOf&quot;&gt; Pages ('+(postNum-1)+')&lt;/span&gt;'+html;

  if(thisNum&lt;(postNum-1)){
  html += downPageHtml; 
  }

  if(postNum==1) postNum++;
  html += '&lt;/div&gt;';

  var pageArea = document.getElementsByName(&quot;pageArea&quot;);
  var blogPager = document.getElementById(&quot;blog-pager&quot;);

if(postNum &lt;= 2){
  html ='';
  }

for(var p =0;p&lt; pageArea.length;p++){
  pageArea[p].innerHTML = html;
  }

if(pageArea&amp;&amp;pageArea.length&gt;0){
  html ='';
  }

if(blogPager){
  blogPager.innerHTML = html;
  }


}


</script>

<script type='text/javascript'>

 var thisUrl = home_page_url;
  if (thisUrl.indexOf(&quot;/search/label/&quot;)!=-1){
  if (thisUrl.indexOf(&quot;?updated-max&quot;)!=-1){
  var lblname1 = thisUrl.substring(thisUrl.indexOf(&quot;/search/label/&quot;)+14,thisUrl.indexOf(&quot;?updated-max&quot;));
  }else{
  var lblname1 = thisUrl.substring(thisUrl.indexOf(&quot;/search/label/&quot;)+14,thisUrl.indexOf(&quot;?&amp;max&quot;));
  }
  }

 var home_page = &quot;/&quot;;
  if (thisUrl.indexOf(&quot;?q=&quot;)==-1 &amp;&amp; thisUrl.indexOf(&quot;.html&quot;)==-1){ 
  if (thisUrl.indexOf(&quot;/search/label/&quot;)==-1){ 
  document.write('&lt;script src=&quot;'+home_page+'feeds/posts/summary?alt=json-in-script&amp;callback=showpageCount&amp;max-results=99999&quot; &gt;&lt;\/script&gt;')
  }else{document.write('&lt;script src=&quot;'+home_page+'feeds/posts/full/-/'+lblname1+'?alt=json-in-script&amp;callback=showpageCount2&amp;max-results=99999&quot; &gt;&lt;\/script&gt;')
  }
  }
  </script>

And Click “save template
In the above code you may only edit four lines to customize your navigation bar.

var pageCount=10;

In this code Number 10 control the number for posts per page, you can change it to choose how many posts per page you want to display.
Note : This Number value should be the same With in your blogger account settings
The settings can be found by going to Dashboard >> Setting >> Formatting >> Show >> 10 posts

var displayPageNum=6;

Number 6 here control the number of pages that will be shown in the navigation bar.

var upPageWord ='Previous';
var downPageWord ='Next';  

if you want to change the language or just change it to any thing, please change Previous for example to Older

Final Step

This blogger trick my cause some problems if you use labels in your posts and to solve this problems you have to apply the next step for your template.

1. Add Label Gadget To Your Template by going to Layout >> page elements >> Add Gadget >> Select Labels and add it to your template.

2. go to, Dashboard >> Layout >> Edit html.
And find the following code.

<a expr:dir=’data:blog.languageDirection’ expr:href=’data:label.url’><data:label.name/></a>

And replace it with the following code.

<script type='text/javascript'>
var lblname = &quot;<data:label.name/>&quot;;

lblname2 = encodeURIComponent(lblname);
var feedlink = &#39;/search/label/&#39; + lblname2+&#39;?&amp;max-results=10&#39;;
document.write(&#39;&lt;a href=&quot;&#39; + feedlink + &#39;&quot;&gt;&#39;+lblname+&#39;&lt;/a&gt;&#39;);
</script>

And Click “save template
We are done.

Demo.

To see how it looks see this demo blog
Big thanks for Abu Farhan & Mohamed Rias

By Max

I'm Max, The founder and the admin of AllBlogTools.com I'm a very big van of blogging ,design and coding, I think that i'll die next to my computer.

No related posts found

DeliciousFacebookDigg
Design FloatMixxReddit
StumbleUponTechnoratiTwitter

comments

  • 70 responses so far!
  •      Eduard ( 5:19 AM on 9/22/09 )

    На этой теме не работает. ;-(

    http://jazz-portal.blogspot.com/

  •      Eduard ( 5:20 AM on 9/22/09 )

    This theme does not work. ;-(

    http://jazz-portal.blogspot.com/

  •      vineeth ( 10:45 AM on 9/22/09 )

    not worked in my blog

  •      cecepthea ( 9:53 PM on 9/22/09 )

    i was used

  •      electrinick ( 1:27 AM on 9/23/09 )

    This trick works in my blog.But I did not use ‘final step’ because I could not find the code. I haven’t seen any problem so far. I hope I don’t :)

  •      Max ( 7:24 PM on 9/23/09 )

    hi all, this trick definitely working perfectly, you can see the demo, or read electrinick comment, make sure that you do it in the right way.

  •      Abu Farhan ( 6:31 PM on 9/24/09 )

    I just check this post, I’ll try to answer any problem in this hack
    @Eduard I did’t see script in you blog
    @vineeth yor page navigation can’t show in your first page but in your Label view you can see page navi. problem maybe in your template not show navi in first view
    @electrinick Where’s you url

  •      Abu Farhan ( 6:41 PM on 9/24/09 )

    @vineeth just check again your blog, problem because #blog-pager{text-align:center; width:640px; overflow: hidden; margin:5px 5px 5px 5px; padding:5px 0px;}

    Overflow hidden

  •      Max ( 11:56 PM on 9/24/09 )

    hi Abu Farhan, i’m really happy to see you here, and i appreciate your comments and efforts.
    you are surly always welcome here,

  •      Abu Farhan ( 2:22 AM on 9/25/09 )

    @Max, ok I’ll try to answer if some problem about this hack. The problem usually because no blog-pager id.

  •      boholik ( 7:37 AM on 9/26/09 )

    i can’t find this code

  •      boholik ( 7:43 AM on 9/26/09 )

    i can’t find this code

    http://i080.radikal.ru/0909/16/3c324c7bf381.jpg

  •      Vacanze in Albania ( 2:14 PM on 9/26/09 )

    Good job….thank you

  •      Max ( 9:00 AM on 9/27/09 )

    hi boholik, i think you can’t find it because you didn’t added the labels gadget to your template, please provide me with your blog link so i can help you.
    thanks.

  •      Max ( 9:11 AM on 9/27/09 )

    @ Vacanze in Albania, not at all friend.

  •      miko ( 8:51 PM on 9/27/09 )

    good joob

  •      Max ( 3:07 AM on 9/28/09 )

    thanks miko.

  •      ajinkyakambe ( 5:07 PM on 10/1/09 )

    hey i am having problem with add these widjet please help me …………

  •      Max ( 7:24 PM on 10/1/09 )

    hi ajinkyakambe, please give me some details about your problem.

  •      Resep Lidah Kucing ( 9:32 PM on 10/1/09 )

    oh dear,
    thanks for your tutorial. i have been aplicate to blog. see my blog. :D

  •      dbhmusic ( 1:11 PM on 10/2/09 )

    This is great, but Not work all template.

  •      Max ( 5:22 PM on 10/2/09 )

    @ dbhmusic , oh yes, this can’t go perfectly on all templates, specially the customized templates, tell me whats wrong with you??

  •      Aris ( 6:51 AM on 10/3/09 )

    Hi,

    Could someone please help me with my blog template. I’ve searched all over the web on how to add missing ‘newer/older posts’ navigation on my template. But I couldn’t find it. Here is my blog http://gunnersbrunei.blogspot.com/

  •      Baloch ( 9:07 AM on 10/4/09 )

    Check it Baby http://www.kingzahm.tk

  •      Max ( 4:26 AM on 10/5/09 )

    @ Baloch, thanks , all visitors now can see this trick added and working perfectly to alot of blogs.

  •      capunk ( 4:16 AM on 10/8/09 )

    Final step doesnt work even after I adding label ithin the widget

  •      Max ( 7:28 PM on 10/8/09 )

    @ capunk, the final step isn’t very necessary one. if the widget works with your blog with out it.

  •      luckykhera ( 5:13 AM on 10/14/09 )


    not im my html code

  •      HighSpeedDLS ( 7:23 AM on 10/14/09 )

    it doesn’t wrk..

  •      SostyPasha ( 11:10 AM on 10/14/09 )

    thanks nice post :)

  •      Max ( 12:55 PM on 10/15/09 )

    ok, not in all custom template, but try to find a similar code.

  •      BEBEN ( 7:48 AM on 10/18/09 )

    Unexpected surprise, turned out to BOS Abu Farhan visit to here, too. A deficiency of this hack, unfortunately not in the add image in CSS it (unfortunately ih) (English version translate google..LoL)

  •      vamp6x6x6x ( 12:14 AM on 10/19/09 )

    I finally got it had to try it three times

  •      Damion ( 11:20 AM on 10/20/09 )

    Thanks for the info. It worked great!

  •      Max ( 1:43 PM on 10/21/09 )

    @ vamp6×6x6x, i’m glad for you, and i wish all to make all visitors see your comment that confirm that this hack working perfectly, it just needs you concentration while doing it.

  •      IsHu ( 8:13 PM on 10/22/09 )

    Thanks for the useful post….
    i added it in my page
    http://freeindiansms.blogspot.com its looking cool….
    the thing is i would like to add images in page number button is it possible?? pls help…

  •      Fatih ( 8:27 PM on 10/22/09 )

    Hurray.. !! I’ve Done..
    Nice hack..

  •      Max ( 4:59 PM on 10/24/09 )

    @ IsHu, yes you can but you have to have some knowledge about css and html.

  •      TheShadow ( 3:05 AM on 10/25/09 )

    Hi.This hack worked in my blog but now I find a little problem with total page count.My blog display 5 post per page.and now i am having 574 post.but total page count is still 100 or 101.I didn’t use final step because i find two same codes within it.So help me to solve it.

  •      pradeep kumar ( 3:02 AM on 10/28/09 )

    hi Abu Farhan, I tried this code to add the pagebar in my blog. But I have problem in adding the final step code and I am using so many labels in my blog, so it is necessary to me to add the final step code. Sir, Plz tell me what should I do to resolve this problem?

  •      king ( 2:05 PM on 10/29/09 )

    hi there,
    is still,does not working..
    please help me..
    i’ve already,try to follow the instructions..

  •      Max ( 11:36 AM on 10/30/09 )

    @ TheShadow, the final step have nothing to do with your problem, this hack still don’t work perfectly, me and another coders trying to find the best version of this hack.

  •      Max ( 11:42 AM on 10/30/09 )

    @ pradeep kumar, you have to add the labels widget first before trying to find the code in last step.

  •      Max ( 12:03 PM on 10/30/09 )

    Hi King, alot of people already applied this trick successfully, it might be a template problem, Coz every coder has it’s way to code the templates.

  •      mrjack ( 11:51 AM on 10/31/09 )

    Thanks for that :)

  •      Mahdi ( 7:39 AM on 11/5/09 )

    I can’t find



    code

    my template is FreshCircus

  •      Max ( 6:10 PM on 11/13/09 )

    hi madiha, the code isn’t appear here, please contact me.

  •      lumbung_download ( 4:53 AM on 11/18/09 )

    may be the problem is here:
    I was fail to follow the final step either, but i follow abu rahman suggestion to replace Overflow hidden into overflow show….
    an then i looking for the source of problem…
    check this code:
    #blog-pager-newer-link {
    float: left;
    display:no;
    }
    #blog-pager-older-link {
    float: right;
    display:no;
    }
    #blog-pager {
    text-align: center;
    display:no;

    and i replace all the display: no; into display: yes:
    and the walllaa..i am succeed….without doing the final step!
    check my blog http://lumbungdownload.blogspot.com
    hehehehe just sharing comment from a newbie…..

  •      natasha ( 4:00 AM on 11/25/09 )

    hi max..i hv try yet nothing come out on d page so i did try the last step(finel) yet its stated there as wrong xml ..or sumting like dat which i cant save it after the ammend

  •      Maan ( 12:28 PM on 11/25/09 )

    @ natasha : same problem here..Where is max plz help mee…..

  •      natasha ( 7:50 PM on 11/25/09 )

    HELP!!!!HELP!!!! MAx where arr u honey??? i need u e help:d……

    @Maan… may be coz we r using tamplet…max is it bcoz of dat????

  •      natasha ( 8:18 PM on 11/25/09 )

    dear lumbung_download…. Yezzzzz…i hv try dis tried this trick..ITS WORKKKKKKKKKKKKKK FINALY….

    so friend u may try this

    #blog-pager-newer-link {
    float: left;
    display:no;
    }
    #blog-pager-older-link {
    float: right;
    display:no;
    }
    #blog-pager {
    text-align: center;
    display:no;

    If incase u couldn’t find the words ” display.no; ” u may just type them ure self….

    Gud luck…
    thks lumbung..muahhhhhh love yeah

  •      elle291 ( 6:51 AM on 11/26/09 )

    Numbered Page Navigation Bar works fine.
    How do I number the label?
    I find this code: . how do I do?

  •      Max ( 9:41 PM on 11/26/09 )

    lumbung_download, thanks for your comment, i’m sure it’ll help alot of people.

    @ natasha, sorry for being late, i was too busy the last few days,

    @ Maan, please try to follow natasha steps.

    i’m still here for any help.

  •      ZaFaR ( 11:19 PM on 11/26/09 )

    Max, Plz help me out here, I have try ur trick & it’s come in good display thanks for the trick, but the problem is it’s displaying the pages till 1 to 51 pages, and the pages are more than 200….. help me here bro…..

  •      elle291 ( 6:24 AM on 11/27/09 )

    Hello Max, I replaced this code (to say the date expr expr blog languageDirection href url label given date: label.name), but when I go to save the model gives me error.
    how do I do?

  •      dbhmusic ( 2:46 PM on 11/27/09 )

    i have problem with final step
    plz do something!

  •      YaniLavigne ( 2:43 AM on 11/29/09 )

    it work for me haha thank you very much its very useful for my page;)*

  •      sulltan ( 4:15 PM on 12/10/09 )

    hi,
    i have done its working but i cant make Final Step .. I find the code and Replace it with your given once . but got error . http://karshot.blogspot.com/ kindly help. :)
    thanks

  •      sulltan ( 5:29 AM on 12/11/09 )

    sorry for comments again and again . but i m only facing the problem in Final step . that is most important to control Labels . in final step i find 2 codes with yours given one when i try to replace i got error . please help me i will wait for your kind Comments . thanks http://karshot.blogspot.com/

  •      Abu Farhan ( 8:35 AM on 12/11/09 )

    Hi All I updated Page Navigation for blogger in here http://www.abu-farhan.com/tag/page-navi/

  •      bader ( 11:47 AM on 12/13/09 )

    it didnt work for me…i have a template from some other site and applied wat u told me and it didnt work can u please leave me ur email so i can give u my site code so u can possibly fix it for me

  •      ccybertron ( 9:34 AM on 12/15/09 )

    i succed place this hack in my blog
    http://www.takeaworld.com
    now i have 537 posts, but why in the post page only diplay 100 posts?
    Anyone can solve may problem?

  •      Marcio ( 9:31 PM on 12/15/09 )

    This page feature is awesome, but unfortunately I can`t find the code of the final step and maybe it`s because I`m using the latest cloud tags (labels) released. Any hints for me please?
    Thanks!

  •      III.5 ( 8:17 AM on 12/22/09 )

    Thanx for this, But it didn’t work on my blog whatever, allblogtools is best for me & who uses the blogger!!

    sorry for my bad English

  •      eb! ( 12:03 PM on 12/22/09 )

    the page numbers appear but without page numbers border, why it is happened?
    plz help me, thank u!

  •      Shinox ( 8:17 AM on 12/24/09 )

    Hi guys, I found the error on your trick.
    The last javascript, its bad writted, that javascript must says “” and not “”

  •      Shinox ( 8:19 AM on 12/24/09 )

    Sorry, javascript must says “data:label.name/” without spaces. Bye

  •      Max ( 11:13 AM on 12/25/09 )

    The last step code fixed now, please try to add it now. thanks for Shinox,
    And please Don’t add more comments for this tutorials, i will close comments here, this is because this widget have a lot of problems, and i’ll add another pagenavi widget very very soon witch wi’ll be free of errors. Wait for it.

blogger spacer my twitter my facebook my rss feeds my google buzz E-mail updates

advertise
Write For Us
Write For Us

Add to Technorati Favorites Web Design Top Blogs
Top Resources blogs Web Development & Design Blogs hihera.com Resources BlogsArts Blogs - Blog Rankings
Templates Blogs - Blog Catalog Blog Directory Click to see how many people are online TopOfBlogs Computers & The Internet Topsites - TOP.ORG  blogarama - the blog directory
 

Featured in Alltop

AllBlogTools.com © 2009 All rights reserved

Home  |  About Us  |  Contact Us  |  Support Blogger Tricks  |  Blogger News   |  Blogger Templates