Interesting it would usually be having reply threading on that could cause a css like issue, but yours is the opposite.
Can you link to your site to a topic with reply threading off so I can see what could be causing the issue. It could be some CSS related issue.
You can test to see if this still happens with another theme activated too.
@robkk I had turned reply threading back on, just so the posts look normal, but I will turn it back off so you can check…thanks!
http://www.badboyzromz.com/topic/introduce-yourself/
@omj-1
This is the CSS causing the issue.
#bbpress-forums .bbp-body div.bbp-reply-content {
clear: both;
margin: 10px;
padding: 0;
}
The reason why when reply threading is enabled fixes the issue is because the list .bbp-body self closes and makes the above CSS not work.
Here is the ticket about the reply threading markup bug.
https://bbpress.trac.wordpress.org/ticket/2757
You can use this custom CSS to fix the issue.
#bbpress-forums .bbp-body div.bbp-reply-content {
clear: none;
}
@robkk thx Rob! I checked my style.css in my child theme & found that code…I think I copied/pasted from somewhere…I changed it & it fixed it! thx again!!!
@omj-1
You can completely remove the code and I think it will fix some other issues being present with margins and padding.
@robkk cool, I’ll do that….thx again
*edit* yes, it fixed some other issues…thx!