Hi, thanks for reading this post. I have a web page that displays fine in IE but in Firefox and Safari there is a space at the top of the web page. It is as if the whole page is pushed down, like there is a large margin at the top. Thank you. My code is as follows:
[html]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Liken - A Series of Movies the Whole Family Can Enjoy</title>
<style type="text/css">
<!--
table {
vertical-align: top;
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
left: 0px;
top: 0px;
right: 0px;
bottom: 0px;
}
.top {
height: 50%;
width: 100%;
background-image: url(images/index_03.jpg);
background-repeat: no-repeat;
background-position: center bottom;
}
.bottom {
height: 50%;
width: 100%;
background-image: url(images/index_08.jpg);
background-repeat: no-repeat;
background-position: center top;
}
.left {
width: 50%;
background-image: url(images/index_05.jpg);
background-repeat: no-repeat;
background-position: right center;
}
.right {
width: 50%;
background-image: url(images/indexj_07.jpg);
background-repeat: no-repeat;
background-position: left center;
}
body {
background-color: #0099CC;
text-align: center;
vertical-align: top;
margin: 0px;
padding: 0px;
clear: none;
float: none;
height: 100%;
width: 100%;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
overflow: visible;
position: absolute;
visibility: visible;
z-index: auto;
top: 0px;
}
-->
</style>
<body>
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td colspan="3" class="top"> </td>
</tr>
<tr>
<td class="left"></td>
<td>
<script type="text/javascript" src="swfobject.js">
</script>
<div id="flashcontent">
This text is replaced by the Flash movie.
</div>
<script type="text/javascript">
var so = new SWFObject("nav-WEBbrochure-bible.swf", "nav-WEBbrochure-bible.swf", "629", "607", "#336699");
so.write("flashcontent");
</script>
</td>
<td class="right"></td>
</tr>
<tr>
<td colspan="3" class="bottom"></td>
</tr>
</tbody>
</table>
</body>
</html>
[/html]