CSS code to move my like and social button to the top of my page

  • Unknown's avatar

    I would like to know if it is possible to receive the CSS code to move my like and social media buttons to the top of my page.

    Thanks~

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, this is normally something that doesn’t work too well, but on the Apostrophe theme, due to the way the HTML is structured, it looks like we can do this without any of the normal problems we run into. Go to Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS and see what you think.

    .single .entry-content {
        position: relative;
        padding-top: 150px;
    }
    .single .entry-content #jp-post-flair {
        position: absolute;
        top: 0;
    }
  • The topic ‘CSS code to move my like and social button to the top of my page’ is closed to new replies.