Related Posts Positionin on Oxygen Theme

  • Unknown's avatar

    Hi there! I’m back with another question. I feel like I’m on here every day. My blog is new, and so up until today, the related content function wasn’t showing. Today I hit 10 posts, so the related posts started appearing. The only problem is that they’re appearing at the top of the page, overlapping the post. I suspect this is because I moved the sharedaddy to the top of the page and they are set to appear under the share & like buttons. Please tell me there is a way to override this, so the share buttons can stay on top and related posts can move to the bottom. Thanks in advance!

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

  • Unknown's avatar

    Hi, I checked but can’t find the related posts item on your blog post. Did you disable it? If yes, can you please enable it for a while so I can help you with the positioning?

    If you did not disable it, can you please give me an example URL of the post that shows a related post section?

  • Unknown's avatar

    Hi! Yes I had disabled it because it looks awful. I’ve just enabled it again. Thanks in advance for the help!

  • Unknown's avatar

    Alright, first thing first.

    Your current custom CSS contains this:

    .single #jp-post-flair {
    	position: absolute !important;
    	top: -5px;
    	width: 100%
    }

    Please delete that. Or, just to be safe, comment it out:

    /*
    .single #jp-post-flair {
    	position: absolute !important;
    	top: -5px;
    	width: 100%
    }
    */

    Afterwards, adding the following custom CSS at the end of your current custom CSS should do the trick:

    .single #jp-post-flair {
    	position: static;
    }
    .single .sharedaddy.sd-sharing-enabled {
    	position: absolute;
    	top: 0;
    	right: 0;
    }
  • Unknown's avatar

    Thanks so much! It worked.

  • The topic ‘Related Posts Positionin on Oxygen Theme’ is closed to new replies.