Kelly
Kelly

Reputation: 153

z-index set to highest but still appears beneath

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

Answers (1)

M.L.
M.L.

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

Related Questions