Hi guys,
This is driving me nutz. I made a flash website which is a movie (tireslongbeach dot com). I centered the website using dreamweaver and the css method with a div tag on the embed content. After this website was published I wanted to add alternate content for the search engines to be able to crawl the website so using swf object the code for the website looks like this:
--------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3. org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3. org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
var params = {};
params.scale = "noscale";
var attributes = {};
swfobject.embedSWF("tiretrax.swf", "altContent", "1000", "1100", "9.0.0", false, flashvars, params, attributes);
</script>
</head>
<body>
<div id="altContent">
<a href="http://www.adobe. com/go/getflashplayer">
<img src="http://www.adobe. com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
</div>
</body>
</html>
----
The question is how to center this website?

Is it possible to use the css method with this code above? Where would I apply it?
Thanks