Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor csonnek

    (@csonnek)

    Happiness Rocketeer ??

    Can you let me know what site you’re having this problem? Once I have that information, I’ll be better able to help.

    If you want it to remain private, you can also contact us via this contact form:
    https://jetpack.me/contact-support/

    Thanks!

    Thread Starter edoherto

    (@edoherto)

    My blog is https://edoher.com/, and in this article in particular I use pagination https://edoher.com/2014/01/sexlife-special-04-left-behind/. As you can see, all the Jetpack Social Sharing button are ABOVE the pagination. I am using Ryu theme.

    Thanks in advance for your help!

    Plugin Contributor csonnek

    (@csonnek)

    Happiness Rocketeer ??

    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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Social Buttons over post pagination’ is closed to new replies.