Reputation: 153
z-index is set to 350 but when you hover over the twitter image the popup still appears beneath? I would be forever grateful if you could take a look at the html and css:
Thanks a million.
Kelly.
Upvotes: 1
Views: 129
Reputation: 4706
Change this:
#home .carousel {
width: 475px;
float: left;
display: block;
overflow: hidden;
background: ...
}
to this
#home .carousel {
width: 475px;
float: left;
display: block;
overflow: visible;
background: ...
}
It seems to solve your problem.
Upvotes: 2