Moving tags to bottom of post – McKinley theme

  • Unknown's avatar

    Hi there,

    I am using the McKinley theme and I want to be able to move the tags to the bottom of the post, as they are currently at the top under the title. I have the CSS upgrade.

    Thanks

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

  • Unknown's avatar

    Hi there,

    I see that you already have the category moved to bottom of the post. Your current custom CSS reads like this:

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

    To move the tags part as well, remove those and replace them with this:

    .hentry {
    	position: relative;
    	padding-bottom: 70px;
    }
    
    .entry-header {
    	position: static;
    }
    
    .categories-links {
    	position: absolute;
    	bottom: 10px;
    	left: 0;
    	margin-left: 135px;
    }
    .tags-links {
    	position: absolute;
    	display: block;
    	margin-left: 135px;
    	bottom: 40px;
    	left: 0;
    }
  • Unknown's avatar

    That’s perfect thanks!

  • Unknown's avatar

    You’re welcome!

  • The topic ‘Moving tags to bottom of post – McKinley theme’ is closed to new replies.