i’m not a developer by any means, but this seems to work (there’s probably a better way
in my bbpress.css file here “wp-content\plugins\bbpress\templates\default\css”
i just broke out “div.bbp-forum-content” from this:
#bbpress-forums div.bbp-forum-content,
#bbpress-forums div.bbp-topic-content,
#bbpress-forums div.bbp-reply-content {
margin-left: 130px;
padding: 12px 12px 12px 0;
text-align: left;
}
to this:
#bbpress-forums div.bbp-forum-content {
margin-left: 0px;
padding: 12px 12px 12px 0;
text-align: left;
}
#bbpress-forums div.bbp-topic-content,
#bbpress-forums div.bbp-reply-content {
margin-left: 130px;
padding: 12px 12px 12px 0;
text-align: left;
}
and set that left margin to 0 px rather than 130.
let me know if there’s a better or more elegant way!