Try this:
Subforum links
This will remove the font awesome icon and also show subforums in responsive. Note you must select the following:
Admin control panel -> Appearance -> Style properties -> Node/forum list -> Sub-forums display style -> Listed below node
CSS:
// remove sub node fa
.subNodeLink.subNodeLink--forum::before, .subNodeLink.subNodeLink--category::before {
display: none;
}
// add subforum links to responsive
@media (max-width: @xf-responsiveMedium) {
.node-subNodesFlat {
display: inline-block;
}
}