Greetings all,
So, I'd been digging around for information on how to finagle this effect on my site for a while. I finally found somewhat of a tutorial, but I'm not sure how to apply the code. I mean, I know how to link css in html, but I'm not certain how to apply this effect to my twitter feed (http://philipos.com).
Info about effect: http://jqueryfordesigners.com/fixed-floating-elements/
As always, must appreciated!
Philip
http://philipos.com
So, I'd been digging around for information on how to finagle this effect on my site for a while. I finally found somewhat of a tutorial, but I'm not sure how to apply the code. I mean, I know how to link css in html, but I'm not certain how to apply this effect to my twitter feed (http://philipos.com).
Info about effect: http://jqueryfordesigners.com/fixed-floating-elements/
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 10,
interval: 6000,
width: 220,
height: 250,
theme: {
shell: {
background: '#a30000',
color: '#cfcfcf'
},
tweets: {
background: '#e6e6e6',
color: '#423542',
links: '#9c0e0e'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: false,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('pysolomon').start();
</script>
As always, must appreciated!
Philip
http://philipos.com


