Moving tags below a post in Twenty Thirteen

  • Unknown's avatar

    Hello,

    I’m using the Twenty Thirteen theme on this blog and I intend to pay for the upgrade so I can customise it, but one change I’d like to make is to move the tags below the post rather than above it. Does anyone know whether that’s possible, and what the CSS is to do it?

    Thanks!

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

  • Unknown's avatar

    Here’s an example to get you started. It will move the tags only to the bottom of posts in the Twenty Thirteen theme:

    .hentry {
    	position: relative;
    }
    .entry-header {
    	position: static;
    }
    .categories-links {
    	position: absolute;
    	bottom: 0;
    	margin-left: -135px;
    }
  • Unknown's avatar

    Thank you, this code was helpful for me as well in my blog.

  • The topic ‘Moving tags below a post in Twenty Thirteen’ is closed to new replies.