XF 2.2 Can't seem to underline links in this area

beerForo

Well-known member
Trying to underline links in the profile post sidebar widget. They are already underlined in the full size and on the member page. When I try it underlines the author and time not the posted URL only. This is what I have for the other areas. Just need something for this. Thanks!
Code:
.message-body a, .fr-view a, .bbCodePreview-content a, .message-signature a {
    text-decoration: underline !important;
}
 
Pretty specific CSS but it should do the trick. Targets that widget.

Code:
[data-widget-definition="new_profile_posts"] .bbWrapper a {
    text-decoration: underline;
}
 
Top Bottom