I want the widget to be 200px high with scrollbar but the minimum height it displays at is 302. How can I fix this?
The code I’m using is:
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 170,
height: 200,
theme: {
shell: {
background: '#535fe1',
color: '#ffffff'
},
tweets: {
background: '#bbbbff',
color: '#00008a',
links: '#ffffff'
}
},
features: {
scrollbar: true,
loop: false,
live: false,
behavior: 'all'
}
}).render().setUser('UserName').start();