Hi there - sorry for the second question in as many days! I'm trying to add the standard twitter feed (from twitter) to 'Front Box 3'. So, I insert the Text/HTML widget and paste the following code in:
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 100,
width: 'auto',
height: 150,
theme: {
shell: {
background: '#383a42',
color: '#ffffff'
},
tweets: {
background: '#3d3b47',
color: '#ffffff',
links: '#0790eb'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('huwowenthomas').start();
</script>
...but I think the CSS is trying to style it all out. How do I switch off the CSS for that box?
Thanks,
Huw














