I want to add a subject to my profile widget. When I used the list widget it was easy.
list widget code
<script>
new TWTR.Widget({
version: 2,
type: ‘list’,
rpp: 60,
interval: 30000,
title: ‘UFC® 145’,
subject: ‘Here’s the latest…’,
width: 250,
height: 1000,
theme: {
shell: {
background: ‘#740707’,
color: ‘#dedede’
},
tweets: {
background: ‘#313131’,
color: ‘#bababa’,
links: ‘#c2171f’
}
},
features: {
scrollbar: true,
loop: false,
live: true,
behavior: ‘all’
}
}).render().setList(‘kountermove’, ‘UFC145’).start();
and my profile code (nothing shows up)