Recently we moved away from Disqus comment system and started using default WordPress comment system.
For adding email subscription form for all new comments, I was facing some issue. Checkbox and Text was appearing on different line.
Before:
After:
Here is a quick fix on how to fix this.
Step-1. Open you theme’s style.css file
Put below CSS code for your HTML Handle.
.cnns-comment-subscription label { display: inline; padding-left: 10px; }
Please make sure you have accurate HTML handles. Here is a sample which we have at Crunchify.
Step-2. Clear your site’s Cache
You should be all good after clearing your site’s cache.
Let me know if you face any issue with above code.