Enter this CSS style to your style.css and this will make the bbPress forums to show on a new line. The only thing is that there is a comma at the end of each forum but the fix for that will be provided at a later time.

/* make the sub forums appear one after another on a new line. */
#bbpress-forums .bbp-forums-list li {
    display: block !important;
}

You can use this code to make sure the commas are removed at the end.

if (jQuery('#bbpress-forums .bbp-forums-list li').length) {
    jQuery('#bbpress-forums .bbp-forums-list li').each(function (idx, item) {
        var x = jQuery(item).html();
        x = x.replace(/[\s,]*$/, '');
        jQuery(item).html(x);
    });
}
Referral Note: When you purchase through a referral link (if any) on this page, we may earn a commission.
If you're feeling thankful, you can buy me a coffee or a beer