jquery - Add box-shadow to colorbox? -


i using jquery plugin colorbox. perfect, i'm trying add css3 box-shadow box, , far nothing seems work.

i using

#cboxloadedcontent{ background:rgba(121,121,121,.8); padding:30px; -webkit-box-shadow: rgba(0, 0, 0, 0.8) 2px 2px 8px; -moz-box-shadow: rgba(0, 0, 0, 0.8) 2px 2px 8px; box-shadow: rgba(0, 0, 0, 0.8) 4px 4px 8px; } 

the background color , padding working fine, no shadow.anyone ever wok?

found it:

#colorbox, #cboxoverlay, #cboxwrapper {position:absolute; top:0; left:0; z-index:9999; overflow:hidden;} 

the overflow: hidden crops off shadow. there along. doesn't seem needed either.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -