The issue I am encountering is that the link to the image in the CSS file should be relative, but it does not display any background. I have even attempted placing the image in the same folder as the css file, but this did not resolve the issue either.
CSS
#header {
padding:10px;
color: white;
background: url('../../resources/assets/images/background1.png');
height: 350px;
}
HTML
<!-- Header -->
<div id="header">
<div id="nav">
<p>Nav Bar</p>
</div>
<p>Test</p>
</div>
File Structure Click