Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/09/2010, 04:18
jochite
 
Fecha de Ingreso: septiembre-2008
Mensajes: 185
Antigüedad: 15 años, 6 meses
Puntos: 1
Modificar un widgets de twitter

Estoy intentando modificar el tamaño de la letra y el interlineado de un widgets de perfil de twitter. He utilizado las propiedades características de css para variar el tamaño de la letra y el interlineado pero consigo con ello modificar estas características. ( text-size:12px; y line-height:15px; ).

¿Podriais decirme como modificar en definitiva un theme de twitter. ? Agradeceria vuestra ayuda.



<div id="sidebar1">

<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 4000,
width: 'auto',
height: 300,

theme: {
shell: {
background: '#006633',
color: '#ffffff'


},
tweets: {
background: '#f2eff2',
color: '#080008',
links: '#eb0707'

}
},
features: {
scrollbar: true,
loop: true,
live: true,
hashtags: false,
timestamp: false,
avatars: false,
behavior: 'default'
}
}).render().setUser('ippcv_actividad').start();
</script>