Thanks for that information!
I checked that post in question and see the issue. The way it is now is how it should be by default. However, you can change the positioning of those elements. You just need to add some custom CSS to your theme (or use the Custom CSS module in Jetpack) to change how those two elements are laid out.
The only caveat is that you need to target each post that has pagination. Otherwise, if you don’t, there will be a big gap between the end of your posts and the share buttons when you don’t use pagination, so specifying it to the posts that need it will keep everything consistent visually.
Here’s the CSS to add for the post you mentioned above:
.postid-51 .entry-content {
position: relative;
}
.postid-51 div.sharedaddy {
margin-top: 90px;
}
.postid-51 .page-links {
position: relative;
top: -150px;
}
For future posts, you would need to find the post ID of the post and use the same bit of CSS, but change the 51
to the ID of the new post. Here’s a reference on how to find the post ID if you need it:
https://codex.www.ads-software.com/FAQ_Working_with_WordPress#How_do_I_determine_a_Post.2C_Page.2C_Category.2C_Tag.2C_Link.2C_Link_Category.2C_or_User_ID.3F
I hope that helps! Let me know if you have any questions.