I'm using twitter's profile widget on
my site and I want to change some things but I don't know how.
1st I want to change it so that if you click on a link it opens in a new tab or window so that it doesn't link away from my site.
2nd I only want to to display the updates made within the past 21 days.
Is anyone familiar with this?
Code:
<div id="twtr-profile-widget"></div>
<script src="http://widgets.twimg.com/j/1/widget.js"></script>
<link href="http://widgets.twimg.com/j/1/widget.css" type="text/css" rel="stylesheet">
<script>
new TWTR.Widget({
profile: true,
id: 'twtr-profile-widget',
loop: true,
width: 230,
height: 250,
theme: {
shell: {
background: '#dcdcdc',
color: '#434343'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#0389ff'
}
}
}).render().setProfile('BCSProSoft').start();
</script>