Gracias pude solucionarlo, por si a alguien mas le pasa deben hacer lo siguiente:
Buscar en el archivo: wp-content/plugins/wp-socializer/public/css/wp-socializer-buttons-css.css
Código:
/* ADJUSTMENTS */
.wpsr-floatbar-float_left .wpsr_floatbt .fb-like{
width: 50px !important;
overflow: hidden; /* FB locale buttons fix */
}
Remplazar por:
Código:
/* ADJUSTMENTS */
.wpsr-floatbar-float_left .wpsr_floatbt .fb-like{
width: 100px !important;
overflow: hidden; /* FB locale buttons fix */
}
Buscar:
Código:
/* FLOATING SHARE BAR */
.wpsr-floatbar-float_left{
position: absolute;
border: 1px solid;
border-color: #ccc;
background-color: #fff;
padding: 0px 5px 0px 6px !important;
width: 60px;
margin: 0px 0px 0px 0px !important;
z-index: 9999;
border-radius: 10px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
text-align: center;
}
Remplazar por:
Código:
/* FLOATING SHARE BAR */
.wpsr-floatbar-float_left{
position: absolute;
border: 1px solid;
border-color: #ccc;
background-color: #fff;
padding: 0px 5px 0px 6px !important;
width: 100px;
margin: 0px 0px 0px 0px !important;
z-index: 9999;
border-radius: 10px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
text-align: center;
}
Y Listo....