By default, in most WordPress themes, the comment box appears below the list of comments.
Here’s how to move it to the top, above the list of comments.
Insert this CSS code into your theme’s custom CSS.
div#comments {
position: relative;
padding-top: 350px;
}
div#respond {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
Let me know if it works for you.
Oh yes.. and if you want to link directly to the comment box, just add “#comments” to your WordPress post URL.
Again, let me know if it works for you by leaving a comment here…
Adrian Lee
AdrianVideoImage.com
PS: I use Asteroid theme, so here is how it looks like…
Source: https://en.forums.wordpress.com/topic/moving-the-comment-box-above-the-comments?replies=12
![]()
Discover more from Adrian Video Image
Subscribe to get the latest posts sent to your email.


Awesome. It has worked properly. Thank you so much for sharing this code.