Well of course I'm having problems again, this time I dono what the problem is because the section of code im working on seems so simple.
I want a black background, that explains the first part. And second part I want an image in the center, the image path is correct. I want it padded 45 pixels in from the left, and 20 pixels from the top.
To me this code should work, but obviousally something is wrong cus its not working. Ill post the html i was using to load it aswell, although it was nearly nothing on it. (just trying to get my css up and running first)
MY CSS
CODE
#background {
backgroundcolor: #000000
}
#bodyimage {
background: url (images/center.gif);
padding-top: 20px
padding-left: 45px
}
backgroundcolor: #000000
}
#bodyimage {
background: url (images/center.gif);
padding-top: 20px
padding-left: 45px
}
MY HTML
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Nascent Descent Band</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
</body>
</html>
<html>
<head>
<title>Nascent Descent Band</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
</body>
</html>

