Here is how to the get the twitter feed to work,
Add this code you you page changing the highlighted areas
<script>
new TWTR.Widget({
version: 2,
type: ‘search’,
search: ‘#harley’,
interval: 3000,
title: ‘Harley Hashtag‘,
subject: ‘#harley‘,
width: 480,
height: 400,
theme: {
shell: {
background: ‘#525252′,
color: ‘#ffffff’
},
tweets: {
background: ‘#ffffff’,
color: ‘#444444′,
links: ‘#1985b5′
}
},
features: {
scrollbar: true,
loop: false,
live: true,
hashtags: true,
timestamp: true,
avatars: true,
toptweets: true,
behavior: ‘all’
}
}).render().start();
</script>
All the other formatting codes can be changed as well
Leave a Reply
You must be logged in to post a comment.