dem divs
March 16, 2012 1:20 PM Subscribe
I've implemented a streaming twitter widget into the site I manage. However, for some weird reason the script is creating a div or something that is overlaying the entire sidebar, making links above it unclickable.
No idea what's going on here. Any ideas?
The site is frenchbroadchocolates.com. The twitter widget is on the right side, near the bottom. It's creating its own overlay (i can see it in chrome inspector) that is making it impossible to select or click on stuff beneath it.
Here's the code for the widget below (I changed the script tags to have brackets so they would show up in this post):
[script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"][/script]
[script]
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 30000,
width: 230,
height: 170,
theme: {
shell: {
background: '#c4e4ff',
color: '#0d0d0d'
},
tweets: {
background: '#c4e4ff',
color: '#0d0d0d',
links: '#df2f6d'
}
},
features: {
scrollbar: true,
loop: false,
live: true,
behavior: 'all'
}
}).render().setUser('chocolatelounge').start();
[/script]
posted by lazaruslong to computers & internet (10 answers total) 1 user marked this as a favorite
overflow: auto; /*or hidden would work too*/
width: 230px;
height: 295px;
posted by axiom at 1:34 PM on March 16, 2012 [1 favorite]