I want to move 'Leave a comment' to the bottom of my posts
-
I’m using the ‘minimum’ theme which places the ‘Leave a comment’ prompt in the header of each post. I’d like to move it to the footer of my posts
The blog I need help with is: (visible only to logged in users)
-
To move the “Leave a comment” link from the top to the bottom of the posts with the Minimum theme, you can go to Appearance > Customize > CSS and add the following code to the CSS editor:
#content .post { position: relative; } #content .post-comments { position: absolute; bottom: 0; display: block; background: #f5f5f5 url('wp-content/themes/premium/minimum/images/icon-comments.png') no-repeat 10px 0; width: 100%; margin: 0; padding-left: 32px; }This will also give it the same grey background as the other items in your post footer. Please let me know how that works for you!
If you have any other CSS questions, most of our CSS support is done in the CSS Customization forum by both staff and volunteers:
https://en.forums.wordpress.com/forum/css-customization
- The topic ‘I want to move 'Leave a comment' to the bottom of my posts’ is closed to new replies.