Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/03/2014, 13:31
9andres
 
Fecha de Ingreso: junio-2001
Ubicación: Rosario
Mensajes: 1.434
Antigüedad: 22 años, 10 meses
Puntos: 2
De acuerdo Respuesta: WP Socializer se ve mal la barra flotante en Wordpress

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....