I've run into an issue where my background is showing up, but it's appearing behind my div
s instead of alongside the content as I want. I can't seem to get it to work properly. I believe this part of my CSS code is causing the problem:
body {
background-image:"C:\Users\Peter\Documents\onze server met div\achtergrond.png";
background-color:;
min-height: 100%;
height:1500;
list-style-type:none;
margin:0;
padding:0;
overflow-y:scroll;
}
This is the full CSS code snippet:
body {
background-image: "C:\Users\Peter\Documents\onze server met div\achtergrond.png";
background-color:;
min-height: 100%;
height: 1500;
list-style-type: none;
margin: 0;
padding: 0;
overflow-y: scroll;
}
... (more CSS styles)
#content {
... (content styling properties)
}
... (more CSS styles)
Here's a snippet of my HTML file:
<html>
<head>
<LINK HREF="C:\Users\Peter\Documents\onze server met div\Hetstylesheet.css" REL="stylesheet" TYPE="text/css">
</head>
... (HTML structure)
</html>
Thank you in advance for any help.