Adding a shadow box to the boxed-layout

I am trying to add a box shadow to this site:

http://bbtest-improvutopia.sites.alexj.io/

Like the one you can see here I built with Avada:

http://dev-improvutopia.sites.alexj.io/

How can I do this with CSS? I have tried the following code and it doesn’t seem to be working.

#fl-content-full container {box-shadow: 0 0 10px 4px #000;}

played around some more and figured it out

.fl-page-bar {
position: relative;
box-shadow: 0 0 10px 4px #000;
z-index:10;
}
.fl-page-content {
box-shadow: 0 0 10px 4px #000;
z-index:10;
}
.fl-page-footer-wrap {
box-shadow: 0 0 10px 4px #000;
z-index:10;
}

Hey Alex,

Glad you figured it out! And thanks for sharing the code that does it! Enjoy BB! :slight_smile:

Ben