This is the code I have so far on the page. It's the Alien that I'm having trouble with. If I use absolute positioning for it, even though it looks fine in dreamweaver it pushes it slightly left in my browswer. If I change it to relative position (as I've done below) and use the correct co-ordinates for where I want it placed, the further I want the Alien to be down the page, the bigger the gap it leaves at the top.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns="
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
background-image: url(images/starsglow.gif);
}
#Layer1 {
position:absolute;
width:200px;
height:115px;
z-index:1;
}
#Alien {
position:relative;
left:755px;
top:650px;
width:246px;
height:300px;
z-index:1;
}
-->
</style></head>
<body>
<div id="Alien"><img src="images/alien.png" alt="alien" width="246" height="300" /></div>
<table width="1100" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center"><img src="images/masthead.png" alt="masthead" width="1045" height="179" /></div></td>
</tr>
<tr>
<td height="75"><div align="center"><img src="images/navmenu.png" alt="navmenu" width="881" height="30" /></div></td>
</tr>
<tr valign="middle">
<td height="500" align="center"><div align="center"><img src="images/frame.png" alt="frame" width="887" height="254" align="middle" /></div></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
</table>
</body>
</html>