• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

Centralizing a table in firefox

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Avg

Senior Member
Joined
Oct 30, 2003
For some reason the code below will show the table on the left side in firefox but will be centralized like it is supposed to in IE6 and 7.

HTML:
<body>
<p align="center">
	<table width="800" height="600">
		<tr>
			<td background="images/background.gif">
				<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,0,0" width="640" height="480">
	<param name="movie" value="index.swf" />
	<param name="quality" value="High" />
	<param name="bgcolor" value="#ffffff" />
	<param name="loop" value="false">
	<param name="menu" value="false">
	<embed name="index" src="index.swf" width="640" height="480" quality="High" bgcolor="#ffffff" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" loop="false" menu="false" />
</object>
				</p>
			</td>

		</tr>
	</table>
</p>
</body>
 
Back