Centering Blogger Comment Form

Here's a quick one. Your comment forms are left-aligned by default. In this post I'll show you how you can center the comment forms in one easy step.


If you're using the old layout, go to Dashboard - Design - Template Designer - Advanced - Add CSS - paste the following code - Press enter after the last character of the last line } - Apply to Blog.

If you're using the new layout, you can find Template Designer by going to Dashboard ('House' symbol) - Template - Customize:
.comment-form{
margin-left: auto;
margin-right: auto;
}
Voila! Enjoy your centered comment form.