I'm new to html and css, and I'm trying to code a website (layout images already made in photoshop).
Here's my html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Title (removed)</title>
</head>
<body>
<div id="wrapper">
<div id="header"> </div>
<div id="underheader"> </div>
<div id="content"> </div>
</div>
</body>
</html>
Here's my css:
#wrapper {
width: auto;
height:2621px;
}
#header {
width:auto;
height:315px;
background-image: url('http://piclion.com/images/header1.gif');
background-size: 100%;
background-repeat:no-repeat;
}
#under header {
width:auto;
height:107px;
background-image:url('http://piclion.com/images/underheade.gif');
background-repeat:repeat-x;
}
#content{
background-image:url('http://piclion.com/images/contentsli.gif');
}
Images have been uploaded to a image hosting website, and site title/header has been removed.
My problem is that I can't get a bar under the header to appear. I made a thin slice of blue and I want it to repeat along the screen under the header. I also want a big area for the content. It will not show/repeat either. What am I doing wrong here? Sorry I am very new at this.