Here are a couple of other changes I recommend:
ON user profile pages, the text within <dd></dd> elements is too light. I changed (in "additional.css") the following selector:
HTML Code:
dl.stats dd{
color: {vb:stylevar shadow_color};
}
to
HTML Code:
dl.stats dd{
color: {vb:stylevar secondarycontent_color};
}
Next, I notice the page control above the visitor messages has an unneeded top margin:
The fix for that is to add to "additional.css":
HTML Code:
#view-visitor_messaging #above_postlist {
margin-top: 0;
}
I didn't want to edit the selector already being applied since it could break something elsewhere.