Forum Moderators: not2easy
I do another question though. There is an image set to absolute, that resides with the main container set to relative. I have dimensions for where the image should appear, and works great in ff. It looks good in ie mac. ns win looks good. ie6 pc doesn't appear to show it all.
I've been researching in books and online and not finding info. Any ideas?
Here's a bit of code. My question is with the #gearclock, included elements immediately before in case it impacts.
<!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>Site</title>
<link href="css/InfoT.css" rel="stylesheet" type="text/css" media="all" />
<style type="text/css" media="all">
html, body {margin: 0; padding: 0; height: 100%; text-align: center;
min-width: 780px;
}
#bgcontain {
background: #FFF;
width: 780px;
margin: 0 auto;
text-align: left;
position: relative;
}
#header {
background:#fff;
width: 780px;
height: 143px;
}
#home {
background: #a89d90;
width: 230px;
height: 110px;
}
#home a:link, #home a:visited {
background: #a89d90;
}
#home a:hover {
background: #c1a15b;
height: 80px;
width: 230px;
}
#contact {
background-image: url(../images/toprtbar.gif);
width: 161px;
height: 110px;
background-repeat: repeat-x;
}
#contact a:link, #contact a:visited {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #B0381E;
text-align: left;
line-height: 14px;
text-align: left;
margin-top: 40px;
margin-left: 6px;
}
#contact a:hover {
text-decoration: underline;
color: #2a403e;
}
#gearclock {
position: absolute;
left: 705px;
top: 72px;
}
</style>
</head>
<body>
<div id="bgcontain">
<div id="header">
<div><img src="images/311904.gif" alt="colorbar" width="100%" height="8" /></div>
<div id="home" style="float:left"><a href="index.html"><img src="logo.gif" alt="logo" width="230" height="80" border="0" /></a><br />
<img src="images/linetp.gif" width="132" height="30" /><img src="images/ad832f_30h.gif" width="98" height="30" /></div>
<div style="float:left"><img src="images/topbar/topbar_point.jpg" alt="top photo" width="388" height="110" border="0" /></div>
<div style="float:left" id="contact"><br />
<p><a href="#">contact</a><br />
<a href="#">partner login</a> </p>
</div>
<div id="gearclock"><img src="images/smclock1.gif" /></div>
</div>
</div>
</body>
</html>