I created a twitter widget that includes a scroll bar. However, when I copy and paste the html code for the widget to my website, the scroll bar is missing. I have created twitter widgets before that included a scroll bar and never had this problem. Following is the html code...
new TWTR.Widget({
version: 2,
type: 'faves',
rpp: 15,
interval: 30000,
title: 'Richard Renner on twitter',
subject: '@RichardRenner',
width: 256,
height: 300,
theme: {
shell: {
background: '#4a4a4a',
color: '#ffff5c'
},
tweets: {
background: '#5e5e5e',
color: '#ffffff',
links: '#ffff5c'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
behavior: 'all'
}
}).render().setUser('RichardRenner').start();