Here is a proposal (but no options):
class-floating-social-bar.php, line 893
// Add in the services.
$output .= $services;
// add comments
$myval = '<a href="' . get_permalink() . '#comments" >' . get_comments_number() .'</a>';
$output .= '<div class="sharerbubble">'. $myval . '</div>';
// end add comments
// Close up the outer social bar container.
$output .= '</div>';
and something like that in css:
/*
** Floating Social Bar
*/
.fsb-social-bar .sharerbubble {
background: url("images/singlebubble.png") no-repeat scroll 10px 0 rgba(0, 0, 0, 0);
float: left;
height: 25px;
line-height: 18px;
margin: 7px 0 0;
min-width: 25px;
vertical-align: top;
border-left: 2px solid #DBDBDB;
}
.fsb-social-bar .sharerbubble a {
color: #2D2520;
font-family: 'Lora',Arial,Helvetica,san-serif !important;
font-size: 14px !important;
padding: 0 0 0 40px;
}
Happy web ??