The ie8.css makes the class="biosbg" division position relative. That pushes the floatie down and to the left relative to the class="biosbg" division, instead of to the body as intended. You could skip that and use margin to position the class="biosbg" division. Change (from the ie8.css file):
Code:
@charset "utf-8";
/* CSS Document */
.biosbg {
position:relative;
top:33px;
}
img.biostext {
top:-98px;
}
.editform input {
height:17px;
padding-top:3px;
}
to:
Code:
@charset "utf-8";
/* CSS Document */
.biosbg {
margin-top:66px;
}
img.biostext {
top:-98px;
}
.editform input {
height:17px;
padding-top:3px;
}
And/or you can move the dhtmlfloatie division to the first thing after the opening <body> tag. Get rid of the highlighted:
Code:
<div class="biosbg">
<div id="dhtmlfloatie" ></div>
<a href="johnmartin.html" title="John Martin" onMouseover="showfloatie(floattext[0], event)"><img src="images/johnmartin.png" alt="John Martin" class="johnmartin" /></a>
<a href="adamchance.html" title="Adam Chance" onMouseover="showfloatie(floattext[1], event)"><img src="images/adamchance.png" alt="Adam Chance" class="adamchance" /></a>
<a href="jonmclemore.h . . .
Put it here:
Code:
</head>
<body>
<div id="dhtmlfloatie" ></div>
<div class="pagebody">
<div class="logo">
<a href="index.html" title="Home"><img src="images/logo.png" /></a>
</div>
<div id="myjqu . . .
You should probably do this second one anyway. That way no matter what kind of positioning other elements on the page might in the future end up with in whatever browser(s), the dhtmlfloatie division will not be affected by it.
Bookmarks