I would like to add a box-shadow to my site that uses bootstrap. I have applied a box-shadow to the body-content:
.body-content {
background-color: white;
box-shadow:0 0 25px hsla(0, 0%, 0%, 0.60);
}
However, I would also need the shadow on the nav-bar, because currently it looks like this:
Is there a standard solution for this? I have not found anything but hacks.
EDIT: Sorry for not being able to provide a fiddle..