Kan ikke få det til at virke. så hvis i vil hjælpe er HELE min kode her:
bare ret det der er nødvendigt.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="
http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
/* body */
body {
margin: 0px;
background-color: #494949;
}
/*<----------Slut på body---------->*/
/* top */
#top {
height: 30px;
margin: 0 auto;
background-image: url("images/top.png");
border-bottom: 1px #262626 solid;
}
/*<----------Slut på top---------->*/
/* header */
#header {
margin: 0 auto;
height: 130px;
background-image: url("images/header.png");
}
/*<----------Slut på header---------->*/
/* menu */
#menu {
margin: 0 auto;
height: 30px;
background-image: url("images/menu.png");
border-top: 1px #262626 solid;
border-bottom: 1px #262626 solid;
}
#menu a {
margin-left: 10px;
color: #CCCCCC;
font-size: 16px;
font: Verdana;
line-height: 28px;
text-decoration: none;
padding-left: 25px;
}
#menu a:hover {
text-decoration: none;
}
/*<----------Slut på menu---------->*/
/* content */
#content {
height: auto;
margin: px;
background-color: #494949;
}
#content p {
font-size: 15px;
font: Arial;
color: #aaaaaa;
margin-left: 100px;
margin-right: 100px;
margin-top: 30px;
margin-bottom: 30px;
}
/*<----------Slut på content---------->*/
/* footer */
#footer {
height: 150px;
margin: 0px;
}
#footer p {
color: aaaaaa;
font: verdana;
font-size: 11px;
line-height: 30px;
text-align: center;
font-weight: bold;
}
/*<----------Slut på footer---------->*/
/* ekstra */
.logo {
margin-left: 175px;
height: 130px;
width:260px;
}
.bundlinks {
font: verdana;
color: aaaaaa;
font-size: 12px;
line-height: 10px;
text-align: center;
font-weight: bold;
}
/*<----------Slut på ekstra---------->*/
</style>
</head>
<body>
<div id="top">
</div>
<div id="header">
<img src="images/logo.png" class="logo" />
</div>
<div id="menu">
<a href="#">Forside</a>
<a href="#">Downloads</a>
<a href="#">Gæstebog</a>
<a href="#">Kontakt</a>
</div>
<div id="content">
</div>
<div id="footer"></div>
</div>
</body>
</html>