Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23985

    I’m hoping there’s an easy way to ad a nice shadow effect around the borders of the website. any help wouud be appreciated.

    Thansnks!

    – JOHN

    #121883

    It’s not possible to add a shadow to the box if you’re using a background image. The problem is the html structure which does not allow you to add the shadow to the box itself but you must apply it to the body element. If you don’t need a background image you can use following code:

    .responsive .boxed#top{
    -moz-box-shadow: 0 0 15px #111;
    -webkit-box-shadow: 0 0 15px #111;
    box-shadow: 0 0 15px #111;
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Possible to put a shadow on the edges of the website?’ is closed to new replies.