Reputation: 4023
The right column works perfectly, when I try to do the same with the left one it acts as if it was disabled.
I hope somebody can spot what's wrong here
http://jsfiddle.net/madprops/5HudT/3/
Upvotes: 2
Views: 3522
Reputation: 2810
If you set the z-index
on #leftblockreal
, it should be selectable:
#leftblockreal {
left: 0;
position: fixed;
top: 0;
z-index: 1;
}
http://jsfiddle.net/g_thom/5HudT/4/
Upvotes: 5