Hey, having a bit of a positioning problem. All I want is for a flash movie to be positioned at the absolute bottom of a simple page. Seemed to work fine (in firefox) but I tried it later on in IE and it wasn't working (appeared as right below thhe title). Here's the script (not sure if I can post html ok here, if it doesnt work see lizzlizz.com):
"<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Homepage of Lizz Lunney</title>
<style type="text/css">
</style>
<STYLE type="text/css">
BODY { height: 8.5in } /* Required for percentage heights below */
#footer {
position: fixed;
width: 100%;
top: auto;
right: 0;
bottom: 0;
left: 0;
}
</STYLE></head>
<body>
<div align="center">
<p align="left"></p></div>
<div id="footer">
<p align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="650" height="150" align="middle">
<param name="movie" value="menu.swf">
<param name="quality" value="high">
<embed src="menu.swf" width="650" height="150" align="middle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
</p>
</div>
</body>
</html>"
So basically can someone give me a method of positioning the movie in the bottom middle for all browsers (or atleast firefox & IE)?
croftstorm.com