Topic: one image on top of another
I have been trying for a few days now to put a rollover in my header on top of my image, which covers the whole header. Could someone just have a look and see why wouldn't even any image show on top of my image in the header.
/* AUTHOR: Dina Richards
DATE: 2007.11.30
*/
* {
margin: 0px;
padding: 0px;
}
body {
margin: 0 0 0 0;
color: #EEE;
background: #00FFFF url(images/back_all.gif) repeat-x fixed;
}
/* Link */
a.link {
color: #66FF00;
}
a.hover {
background-color: #006600;
}
a.visited {
color: #009900;
}
#Menu {
list-style-type: none;
width:
}
#header {
left: 50%;
margin-left: -390px;
height: 300px;
width: 787px;
position: absolute;
}
#logo {
background: url(images/dark_pixel.jpg) no-repeat;
height: 300px;
text-align: left;
color: #999;
padding-left: 30px;
padding-top: 30px;
}
l#logo1 {
margin-top: 400px;
float: left;
height: 250px;
width: 300px;
background: #999;
z-index: 14;
display: inline;
}
#container {
margin-top: 400px;
width: 787px;
height: 300PX;
left: 50%;
margin-left: -390px;
position: absolute;
background-color: #000000;
}
...........................................................................................................................
php!
<!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>
<title>bipolarDotCom</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<link href="default.css" rel="stylesheet" type="text/css" media="screen, print"/>
</head>
<body>
<div id="header">
<div id="logo">
</div>
<div id="logo1">
<img scr="images/bipolar.gif">
</div>
</div>
<div id="container">
<p></p>
</div>
</body>
</html>
thank you.

