I have been reorganizing my website portfolio by categorizing CSS, images, and other files into different folders.
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/contact.css">
However, I am facing an issue where certain DIV elements from my CSS file cannot be loaded when they are placed inside directories.
One of the problematic DIVs is as follows:
#contact-form-wrap {
width: 1024px;
margin: 0 auto;
background: url('img/form-bg.png') no-repeat;
min-height: 768px;
}
Is there a solution to this problem? Everything else loads correctly except for the aforementioned div.