Follow the given steps to add the pager in your blogger :-
How to add pager in blogger
Step One:
First of all login to your blogger dashboard and click on template>>edit html.
Step Two:
Now just find the below code:
]]></b:skin>Step Three:
After finding the above code, paste the given code just above them.
#blog-pager{clear:both;margin:30px auto;text-align:center; padding: 7px;}
.blog-pager {background: grey;}
.displaypageNum a,.showpage a,.pagecurrent{font-size: 15px;padding: 6px 14px;margin-right:4px; color: #777; background-color:#999;}
.displaypageNum a:hover,.showpage a:hover, .pagecurrent{background:#369Bde;text-decoration:none;color: #fff;}
#blog-pager .pagecurrent{font-weight:bold;color: #fff;background:#369Bde;}
.showpageOf{display:none!important}
#blog-pager .pages{border:black;}
Step Four:
Now you should add the script in your blog. To add the script find the </body> tag.
Step Five:
Now just paste the given code before the </body> tag.
<b:if cond='data:blog.pageType != "item"'>You did it. Now the thing you should remember is that you can also change the perPage=6; as your wish into 6,7 etc. numPages=4; into 5,9,7 etc as your wish.
<b:if cond='data:blog.pageType != "static_page"'>
<script type='text/javascript'>
/*<![CDATA[*/
var perPage=6;
var numPages=4;
var prevText ='« Previous';
var nextText ='Next »';
var urlactivepage=location.href;
var home_page="/";
/*]]>*/
</script>
<script src="http://helplogger.googlecode.com/svn/trunk/page-navigation2.js"/>
</b:if>
</b:if>
Post a Comment