swap locations on the Blogger nextprev button range

Viewed 23

I would like to swap the locations of the nextprev buttons on the Blogger page: put the Old Posts button on the left and the Recent Posts button on the right My site Amavero 2 (in french) publish my poems. Thank's.

1 Answers

There are 2 ways you can do that.

One is simply add to the CSS, above </head>, the following:

.blog-pager {
  position: relative;
}
.blog-pager-older-link,
.blog-pager-newer-link
{
  position: absolute;
}
.blog-pager-older-link
{
  left: 0;
}
.blog-pager-newer-link
{
  right: 0;
}

The other way involves going into the HTML part, search for the blog-pager code and swap the locations of the blog-pager-newer-link part with the blog-pager-older-link.

I can't post the exact HTML codes you must search because they sometimes difer between templates except the blog-pager bits, UNLESS it's a personalized template.

I hope this helps.

Related