Disable blogger pager

One of the components that you need if you want to build blogs that don't look like blogs (e.g. about.digitalsp.com) is to switch off the bloger-pager navigation.

Find "blogger-pager" in your template:
#blog-pager-newer-link {
  padding: 5px;
  float: left; color:#000;
 }
#blog-pager-older-link {
  padding: 5px;
  float: right; color:#000;
 }
and replace them with:
#blog-pager-newer-link {
display:none;
}
#blog-pager-older-link {
display:none;
}
Depending on the template that you are using, there might be more of these that you have to disable.
blog comments powered by Disqus