Change comment location, size and presentation

  • Unknown's avatar

    I want to move the ‘leave a comment’ link to the bottom of my blog and not have it change to ‘number of comments’ after someone has left a comment. This make people not know where to leave a new comment. Also I would like my tags to be invisible. I am using the skylark theme.

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

  • I don’t know how to prevent the “Leave c comment” not to change to number of comments.

    This CSS hides the tags:

    span.tag-links , span.tag-links + .sep {
        display: none;
    }
  • Unknown's avatar

    Hi there, you can move the comment link to the bottom of your posts with the following CSS. I’ve also included the CSS which hides the existing comment text (which changes to show the number) with “Leave a Comment” that will not change. Let us know if you have any further questions.

    .comments-link {
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 120%;
        visibility: hidden;
    }
    .comments-link a:before {
        content: "Leave a Comment";
        visibility: visible;
    }
  • The topic ‘Change comment location, size and presentation’ is closed to new replies.