Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/11/2012, 06:26
Avatar de djaevi
djaevi
 
Fecha de Ingreso: marzo-2007
Ubicación: Moreno, Buenos Aires
Mensajes: 400
Antigüedad: 17 años, 1 mes
Puntos: 47
Respuesta: TWEETS en mi web

Yo tengo este codigo donde dice nombre_usuario proba poniendo tu usuario de twitter

<div id="twitter">

<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 250,
height: 300,
theme: {
shell: {
background: '#313131',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#b8d8ff'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
behavior: 'all'
}
}).render().setUser('nombre_usuario').start();

</script>

</div>