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>