Issue with CSS Shadow -
i having issue shadow displaying incorrectly in css. set drop on on bottom , right of box whatever reason being cut off , can't work out why.
js fiddle http://jsfiddle.net/jyb5v/
#content { padding: 0 270px 0 0; margin-bottom: 50px; height: 800px; background-image: url("images/mainbg.jpg"); border:1px solid #000; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; -moz-border-radius-bottomleft: 10px; -moz-border-radius-bottomright: 10px; box-shadow: 4px 4px 2px #000000; }
website http://www.debbie.travismoore.co.uk/
any appreciated, thanks
remove overflow: hidden;
#container { width: 100%; float: left; overflow: hidden; // remove line }
Comments
Post a Comment