How to separate the Comments from “Tagged” and “Posted In”?

  • Unknown's avatar

    Hi All,
    In my blog – http://iamalazywriter.wordpress.com/ – underneath each post I have “Posted in”, “Tagged” and “comments”, which are clubbed together in the same line.
    Is it possible to have them in separate lines?
    Also, If possible, can I have the “Comments” just after the post-that is- above “Rate this”?
    Thanks in advance for any help!
    Note: I have not purchased the theme and currently, using free version

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

  • Unknown's avatar

    That’s not possible without purchasing an annually renewable custom design upgrade and doing the required CSS editing. I have flagged this thread so it will be moved to the CSS editing Forum. There Staff can tell you whether or not what you want to do can actually be done via CSS editing.

  • Unknown's avatar

    In my blog – http://iamalazywriter.wordpress.com/ – underneath each post I have “Posted in”, “Tagged” and “comments”, which are clubbed together in the same line.
    Is it possible to have them in separate lines?

    To make the post meta data below posts on the Twenty Ten hom page, add this to your Appearance → Custom Design → CSS editor:

    .entry-utility .tag-links {
    	display: block;
    }
    .entry-utility .meta-sep {
    	display: none;
    }

    On individual posts, the meta data is lumped into one sentence and cannot be split up in the same way.

  • Unknown's avatar

    Also, If possible, can I have the “Comments” just after the post-that is- above “Rate this”?

    That is not possible because you would need to use absolute positioning to move the comments link and the “Rate this” area will be a variable width depending on how many people click the Like button for your posts.

  • The topic ‘How to separate the Comments from “Tagged” and “Posted In”?’ is closed to new replies.