How To Add Page Number Navigation in Blogger
How to add Page Number Navigation in Blogger
There are two steps:
1. Adding the CSS
2. Adding the Script
Let's go with me how to add CSS
1. Adding CSS
Step 1: Go to Blogger Dashbaord > Template >Edit HTML
Step 2: Click anywhere inside the code area press Ctrl +F to open the search box and past the following tage inside the search box and hit Enter to find it.
Style 1
]]></b:skin>Step 3: Now choose one of the following styles copy the code just bellow it. Just above ]]></b:skin> past the code that you want to use.
Style 1
#blog-pager{clear:both;margin:30px auto;text-align:center; padding: 7px;}
.blog-pager {background: none;}
.displaypageNum a,.showpage a,.pagecurrent{padding: 3px 7px;margin-right:5px;background:#E9E9E9;color: #888;border:1px solid #E9E9E9;}
.displaypageNum a:hover,.showpage a:hover,.pagecurrent{background:#CECECE;text-decoration:none;color: #000;}
.showpageOf{display:none!important}
#blog-pager .showpage, #blog-pager .pagecurrent{font-weight:bold;color: #888;}
#blog-pager .pages{border:none;}
Style 2
#blog-pager{clear:both;margin:30px auto; padding: 7px; text-align:center;font-size: 11px;background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #000000),color-stop(1, #292929));background-image: -o-linear-gradient(top, #000000 0%, #292929 100%);background-image: -moz-linear-gradient(top, #000000 0%, #292929 100%);background-image: -webkit-linear-gradient(top, #000000 0%, #292929 100%);background-image: -ms-linear-gradient(top, #000000 0%, #292929 100%);background-image: linear-gradient(to top, #000000 0%, #292929 100%); padding: 6px;-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;} .blog-pager {background: none;} .displaypageNum a,.showpage a,.pagecurrent{padding: 3px 10px;margin-right:5px; color: #fff;} .displaypageNum a:hover,.showpage a:hover,.pagecurrent{background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #59A2CF),color-stop(1, #D9EAFF));background-image: -o-linear-gradient(top, #59A2CF 0%, #D9EAFF 100%);background-image: -moz-linear-gradient(top, #59A2CF 0%, #D9EAFF 100%);background-image: -webkit-linear-gradient(top, #59A2CF 0%, #D9EAFF 100%);background-image: -ms-linear-gradient(top, #59A2CF 0%, #D9EAFF 100%);background-image: linear-gradient(to top, #59A2CF 0%, #D9EAFF 100%);text-decoration: none;color: #000;-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;} .showpageOf{display:none!important}.blog-pager-older-link, .home-link, .blog-pager-newer-link {background: transparent;} a.blog-pager-older-link, a.home-link, a.blog-pager-newer-link {color: #fff;} #blog-pager .pages{border:none;background: none;}
Style 3
#blog-pager{clear:both;margin:30px auto;text-align:center; padding: 7px;}
.blog-pager {background: none;}
.displaypageNum a,.showpage a,.pagecurrent{font-size: 14px;padding: 5px 12px;margin-right:5px; color: #666; background-color:#eee;}
.displaypageNum a:hover,.showpage a:hover, .pagecurrent{background:#359BED;text-decoration:none;color: #fff;}
#blog-pager .pagecurrent{font-weight:bold;color: #fff;background:#359BED;}
.showpageOf{display:none!important}
#blog-pager .pages{border:none;}
2.Adding the Script
Step 1: Now press (Ctrl + F) to find the tag bellow:
</body>Step 2: Adding the following script just above </body>
<b:if cond='data:blog.pageType != "item"'>
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
/*<![CDATA[*/
var perPage=7;
var numPages=6;
var firstText ='First';
var lastText ='Last';
var prevText ='« Previous';
var nextText ='Next »';
var urlactivepage=location.href;
var home_page="/";
/*]]>*/
</script>
<script src="https://cambohelpbloggers.googlecode.com/svn/trunk/Page%20navigation.js"/>
</b:if>
</b:if>
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
/*<![CDATA[*/
var perPage=7;
var numPages=6;
var firstText ='First';
var lastText ='Last';
var prevText ='« Previous';
var nextText ='Next »';
var urlactivepage=location.href;
var home_page="/";
/*]]>*/
</script>
<script src="https://cambohelpbloggers.googlecode.com/svn/trunk/Page%20navigation.js"/>
</b:if>
</b:if>
*Note:
After installing, you might want to change these default settings
var perPage=7;1. perPage : how many posts will be shown in each page (7), this number like your default template so you can change to which mumber you want to.
var numPages=6;
var firstText ='First';
var lastText ='Last';
var prevText ='« Previous';
var nextText ='Next »';
2. numPage: how many page will be shown in page navigation (6)
3. You can replace the 'First','Last' and '«Next»', '« Previous' with your won word.
Label fix
By default, Blogger will show 20 posts on Labels page. If you want your labels show the same as your home page, you have cut down to the value that we gave for perPage variable.
Step 1: Find the following code sneppet
expr:href='data:label.url'Step 2: Replace it with this one bellow:
expr:href='data:label.url + "?&max-results=7"'Here 7 is the mumber of posts to be displayed per page.
Step 3: Click save template, now enjoyed with Page Number Navigation!
How To Add Page Number Navigation in Blogger
Reviewed by Unknown
on
1/20/2015 09:56:00 AM
Rating:
Hi there.
ReplyDeleteFor some reason it is not working on my blog.
Can you help me? www.bigcosmichug.com
Thanks.
I thing may you use the old template, but try this tutorial I'm sure that it will work 100% for your blog. Make sure don't miss any step
Deletehttp://cambohelpblogger.blogspot.com/2015/03/simple-ways-adding-page-number-blogger.html#more
please tell me how to change src="https://cambohelpbloggers.googlecode.com/svn/trunk/Page%20navigation.js"/> please tell me.
ReplyDeleteyou can upload the (/svn/trunk) by yourself, but you have to sign up with your google code account.
DeleteIt not working for me,please help me dear.
ReplyDeletehttps://appletips4all.blogspot.com
it's not work is not showing anything
ReplyDelete