If your blogger template doesn't show links for "older posts" and "newer posts" find this line of code:
#blog-pager-newer-link {
float: left;
display:none;
}
#blog-pager-older-link {
float: right;
display:none;
}
and just delete the red part (display:none;)
There is a hack if somehow this still doesn't work:
Insert clear:both; code so the code will be look like this
#blog-pager {
text-align: center;
clear:both;
}
0 comments
Post a Comment