Here are several things that I changed (in bold). The idea is that if you want everything centered, have one element (a div typically) to center everything or have multiple identical divs to center multiple sections. Second, define the size for your objects, not the containers. In your case, it seems like you want your Flash object to be so many pixels wide and so many pixels high. Do it on the object itself. Anyway, after I made these changes, everything was centered in Firefox. Hope this helps!
<!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>
7Ticks Web Portal
</title><link href="App_Themes/PortalDefault/TopLevelElements.css" rel="stylesheet" type="text/css" /><link href="App_Themes/PortalDefault/FormContainers.css" rel="stylesheet" type="text/css" />
<style type="text/css">
#form1
{
text-align: center;
}
</style>
<link href="/WebResource.axd?d=Qw0P1DS5A68rfS_KqH3jt2qaAhUx79KTQrlSmbXBa0J8KqBZ9XGSoTtQMf6IQNUedYk6nF49oAppV_xvBK_4oA2&t=632789952600000000" rel="stylesheet" type="text/css" /></head>
<body>
<form name="aspnetForm" method="post" action="Default.aspx" id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTk3NDQ4NTIyMGRkT0oJJohsUAkO/Z78U+OcLT688t8=" />
</div>
<div style="text-align:center">
<div id="TopBanner" style="text-align: center">
<img src="MasterPages/Images/TopBannerBlue.jpg" width="70%" />
<div id="navigation" style="text-align:center" >
</div>
</div>
<br />
<br />
<div style="text-align:center">
<div class="swfContainer">
<object id="FlashControl5" width="1050" height="650" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0">
<param name="movie" value="Flex_Chart/Nfs_1_0_TopBar.swf">
<param name="quality" value="High">
<param name="play" value="True">
<param name="loop" value="False">
<param name="menu" value="False">
<param name="scale" value="Showall">
<embed name="FlashControl5" src="Flex_Chart/Nfs_1_0_TopBar.swf" quality="High" play="True" menu="False" scale="Showall" loop="False" type="application/x-shockwave-flash" width="100%" height="100%" pluginspage="http://www.macromedia.com/go/getflashplayer">
</embed></object>
</div>
</div>
</div>
</form>
</body>
</html>
Also your CSS:
.swfContainer
{
float:none;
clear:both; text-align: center;
}
Igor
my blog[If this post answers your question, I would appreciate your marking it as "Answer"]
-- Deus est ergo cogito.