2/18/18
Original Poster
btransatlanticlinks to older/newer posts at the bottom of a post in Soho?
I switched from the Simple template to the Soho template. Is there a way to add buttons at the bottom of posts directing readers to the previous or next posts, like Simple had? Thanks!
Community content may not be verified or up-to-date. Learn more.
All Replies (3)

2/18/18
irsahHi...
.blog-pager .blog-pager-newer-link,
If you know well your way around your Blog Theme > Edit HTML you can try below. If it is too complicated for you, ask a developer friend for further assistance.
Backup your current theme to your computer using the Backup/Restore button before you proceed.
- At Theme > Edit HTML
- click Jump to Widget
- select Blog1 widget
- expand <b:includable id='main'>...</b:includable> by clicking the small black triangle
- find below..
.... {{ codes }} ...
<b:include name='super.main'/>
</b:with>
</b:with>
Then add highlighted green like so..
.... {{ codes }} ...
<b:include name='super.main'/>
</b:with>
</b:with>
<b:if cond='data:view.isPost'>
<b:include name='postPagination'/>
</b:if>
click Save Theme
Add the CSS to style your Next Prev links.
Go to Theme > Customize > Advanced > Add CSS > Add below...
.blog-pager .blog-pager-older-link,
.blog-pager .home-link {
display: inline-block;
}
display: inline-block;
}
.blog-pager .blog-pager-newer-link {
float: left;
}
.blog-pager .blog-pager-older-link {
float:right;
}
.blog-pager {
text-align:center;
text-align:center;
overflow:hidden;
}
}
click Apply to Blog.
For further customization use 3rd party help website like stackoverflow.com or Blogger Developer Group where experts there can further assist you. The above should start your conversations there.
Use at your own risk. Blogger Help Forum does not support custom coding due to possible future complications.
Regards
+irsah
2/18/18
Original Poster
btransatlanticworked perfectly, thank you!
Were these replies helpful?
How can we improve them?
This question is locked and replying has been disabled. Still have questions? Ask the Help Community.
Badges
Some community members might have badges that indicate their identity or level of participation in a community.
Community content may not be verified or up-to-date. Learn more.
Levels
Member levels indicate a user's level of participation in a forum. The greater the participation, the higher the level. Everyone starts at level 1 and can rise to level 10. These activities can increase your level in a forum:
- Post an answer.
- Having your answer selected as the best answer.
- Having your post rated as helpful.
- Vote up a post.
- Correctly mark a topic or post as abuse.
Having a post marked and removed as abuse will slow a user's advance in levels.
View profile in forum?
To view this member's profile, you need to leave the current Help page.
Report abuse in forum?
This comment originated in the Google Product Forum. To report abuse, you need to leave the current Help page.
Reply in forum?
This comment originated in the Google Product Forum. To reply, you need to leave the current Help page.