Hi sodermalm,
This issue happens only if you use Super Socializer with wpDiscuz. SS requires id=”respond” for the main wrapper comment box div. So wpDiscuz changes id=”comments” to id=”respond”. This change affects wpDiscuz form if your acrive theme has CSS code for id=”respond” version. The CSS code below will stop the default css and allow wpDiscuz css to work.
Please go to Dashboard > wpDiscuz > Background and Colors Tab and put this CSS code in “Custom CSS Code” textarea:
#respond form {float: none!important;padding: 0px!important;width: auto!important;}
#respond input {background: #f6f6f6 none repeat scroll 0 0;border: 1px solid #ddd;box-shadow: 2px 2px 5px 0 #eee inset;display: inline!important;margin: inherit;padding: inherit;width: auto;}
#respond textarea {background: #f6f6f6 none repeat scroll 0 0;border: 1px solid #ddd !important;box-shadow: 2px 2px 5px 0 #eee inset;width: 100% !important;}
#respond {display: block;float: left;font: 400 12px helvetica,arial,sans-serif;overflow: hidden;width: 100%;}
#respond .comment-inner::after {clear: both;content: ""; display: block;}
#respond .comment-avatar, #tab3 .comment-avatar {float: left!important;width: 46px;}
#respond .avatar {background-color: #fff;display: block;}
#respond .commentmeta {display: block;float: left;margin: 0 10px 10px;}
Another solution for this can be removing all #respond ... { ... } css code from theme’s style.css file.
Thank you. The customs CSS code worked, and I will consider switching away from Super Socializer.