It is my first qustion 🙂
Box shadow does not cover drop-down ul. See the screenshot, please – http://i31.fastpic.ru/big/2012/0202/7d/83a6dfa12f24ace82a3df52b6fe0587d.png. I am trying to solve it for a several hours but no result 🙁
It is strange I have gave z-index to parent element 500 and to the drop-down ul 1 but shadow is still under drop-down ul not over it.
Here is the link: http://layot.prestatrend.com/
Hope someone will help me, thanks.
It is my first qustion :) Box shadow does not cover drop-down ul. See
Share
That’s an issue regarding the stacking context.
The point is you can’t place the block lower than the closest parent with non-static position and positive
z-index. So, you have thez-index:100on the#categories_block_top .tree li, so you can’t place theulunder it.To fix that (one of the ways) you can remove this
z-index, then addposition:relative;z-index:1;to the#wrapperand then add the negativez-indexlikez-index:-1;to anul. Doing so you’ll put it on the same level as the#wrapper, so it would be over the content after it, but under thebox-shadowof the#subheader.