I install one template and after figure out,i wasn't able to see comment box after clicking at post comment. I was wondering that maybe i made some mistake in installing template, after i realize that every template couldnt automatically accept comment box option. I spend more than 6 hours for solve this problem, its too much. but yes,i did and here gonna post solution,so some one else passing same problem, here is solution and with hope, its just need 5 minutes. Good luck. Blogger have developed an inline embedded comment form which can be enabled through Blogger in Draft. This is probably the most requested feature for Blogger, and I'm sure many of you will want to use this straight away! To enable inline comments for your Blogger powered blog, you need to log into your dashboard through Blogger in Draft. Then go to Settings Comments and scroll down the page to see the new "Comment form placement" setting: Check the radio setting for "Embedded below post" which will enable the display of the comment form below your blog posts. If you have customized your template, you will need to make a small change to your template code for this comment form to display. But don't worry, it's a very simple customization to make! Simply go to Layout>Edit HTML in your blog's dashboard and check the "Expand widget templates" box. Then search for this section of code: [B]<p class='comment-footer'> <b:if cond='data:post.allowComments'> <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a> </b:if> </p>[/B] Code (markup): Replace this entire section of code with the following instead: [B]<p class='comment-footer'> <b:if cond='data:post.embedCommentForm'> <b:include data='post' name='comment-form'/> <b:else/> <b:if cond='data:post.allowComments'> <a expr:href='data:post.addCommentUrl' expr:onclick='data:post.addCommentOnclick'><data:postCommentMsg/></a> </b:if> </b:if> </p> [/B] Code (markup): Then save your template. Now when you view a post page in your blog, you should see the new comment form in place! There is one other method,if above is not working for you,i will just take ONE minute of your time and hopefully,it will work with all templates , please again remember,you must long in into your blog via http://draft.blogger.com for take effect any one this methods. Search ( Ctrl+F) for this line in your template code: [B] <b:include data='post' name='comments' />[/B] Code (markup): Immediately after this line, add the following line of code: [B] <b:include data='post' name='comment-form'/> [/B] Code (markup): Then save your template. This method adds the required code for the comment form without having to alter the whole comment area, and is very useful if you have experienced problems using the original method Thanks for the hint, Is! If you don't see your comment form, make sure you have changed this setting through Blogger in Draft and have added your code in the correct place in your template.