Moving the comment box (forever theme)
-
Hi there. I have the Forever theme with the custom design upgrade. http://thevignetteblog.com
The comment box for this theme appears at the top of every post, and it’s accessed by clicking on a small gray speech bubble. I would like to move the comment box to appear at the bottom of every post. Is this possible?
Thanks in advance for any assistance or feedback!
The blog I need help with is: (visible only to logged in users)
-
-
The comment box (the form people fill out to leave a comment) is always at the bottom for me. Do you mean you want to move the bubble with the comment count in it from the top of posts to the bottom? If so, try out this CSS snippet:
.hentry { position: relative; } header.entry-header { position: static; } header .comments-link { top: auto; bottom: 20px; } footer.entry-meta { margin-right: 45px; }Note that I added a right margin for the tag links at the bottom of posts to give the bubble some space. Also, you can adjust the number values in the example to move things around if needed.
-
- The topic ‘Moving the comment box (forever theme)’ is closed to new replies.