I would like to move the "leave a comment" link down to the bottom of the post. It currently is under the post title. How can I do this via CSS?
Thank you!
Joe
The blog I need help with is joegianoli.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
I would like to move the "leave a comment" link down to the bottom of the post. It currently is under the post title. How can I do this via CSS?
Thank you!
Joe
The blog I need help with is joegianoli.com.
To move the "Leave a reply" links from the top to the bottom of posts on the Twenty Twelve theme, add this to your Appearance → Custom Design → CSS editor:
#content .post {
position: relative;
}
#content .comments-link {
position: absolute;
bottom: 1em;
}
#content .post {
padding-bottom: 3em;
}
Perfect! Thank you!
I want to do the same thing on the Adventure Journal theme. This code almost works -- it affects the text I want to remove ("Leave a Comment") by shrinking and moving the blue box around it up or down. But it doesn't remove the text. Help?
My WordPress-hosted site is http://stivershamblen.com.
@coverstorygray12
All CSS editing is theme specific. Please click this link a start your own Adventure Journal thread. http://en.forums.wordpress.com/forum/css-customization#postform
This topic has been closed to new replies.