In the standard theme, links in lists are not coloured until you hover over them.
Theme Horse provided me with the following custom css to make them show:
/* make links in lists visible */
#content ul a, #content ol a {
color: #05a9c5;
}
In the standard theme, lists in sidebar widgets such as the bbPress Recent Topics widget have no bullet and thus it is difficult to see where one entry ends and another starts. Robin Wilson, author of various bbPress plugins came up with the following, which restores bullets to all lists in all widgets.
/* fixes for Activity widget styling */
.widget ul {
list-style-type: disc;
}
.widget ul a, .widget ol a {
color: #05a9c5;
}
This also gets styling of his Latest Activity widget (part of his bbp style pack) working.