On Chrome, if I refresh my browser or open inspect element, the box shadow on the navigation bar disappears and simply does not show. This does not occur on IE. The only way to get it back is to hard refresh. Any ideas?
Website URL: http://tomwilson.pw/files/design/
My HTML is:
<div id="nav_wrapper">
<div id="nav_content">
<div id="nav_logo"></div>
<div id="navigation">
<a href="#" class="active">Home</a>
<a href="#">Link One</a>
<a href="#">Link Two</a>
<a href="#">Link Three</a>
<a href="#" class="button">Sign In ›</a>
</div>
</div>
</div>
<div id="feature_home"></div>
And my CSS is:
div#nav_wrapper{
height: 110px;
width: 100%;
background: url('../img/nav_bg.png'), #293340;
box-shadow:0 0 10px rgba(0,0,0,0.8);
position: relative;
z-index: 2;
display: block;
}
div#nav_content{
height: 110px;
margin: auto;
}
div#feature_home{
width: 100%;
height: 500px;
background: url('../img/feature_bg.png'), #55B5D4;
position: relative;
z-index: 1;
display: block;
}