thanks for posting your solution.
you could do
add_action('bbp_theme_before_topic_title', 'show_true_title');
function show_true_title() {
$topic_id = bbp_get_topic_id();
$true_title = '<li class="specstanza-title"><a href="' . get_permalink() . '">' . get_post_meta( $topic_id, 'bbp_extra_field1', true); '</a></li>';
echo $true_title ;
and then in css do
li.specstanza-title {
color: blue;
}
or
.specstanza-title {
color: blue;
}
or
.specstanza-title li {
color: blue;
}
one of those should let you style the title