The code I provided doesn’t mess with the bullets. That’s handled by your theme. You could try something like below, but it hides the arrow bullets for those forum listings.
.hentry ul ul.bbp-forums-list li i {
background: none;
}
To fix the breadcrumb title, use the below instead.
function my_change_forum_root_breadcrumb_title( $args = array() ) {
$args['root_text'] = 'The EcoPsi Forums';
return $args;
}
add_filter( 'bbp_before_get_breadcrumb_parse_args', 'my_change_forum_root_breadcrumb_title' );