Jeg kan ikke centrere mit website.
Hej jeg har installeret Flabell XML Flash Voting Poll og jeg bruger php koden include til at få den på en af mine php sider.Det virker fint, men af en eller anden årsag så vil den ikke centrere mit website længere, det smutter over i venstre side.
Koden ser således ud:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Flabell XML Flash Voting Poll</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body style="margin:0;padding:0;" scroll="yes">
<style type="text/css">*,body{outline:none;}</style>
<script type="text/javascript" src="media/swfobject.js"></script>
<script type="text/javascript" src="media/swfmacmousewheel.js"></script>
<script type="text/javascript">
// JAVASCRIPT VARS
// cache buster
var cacheBuster = "?t=" + Date.parse(new Date());
// stage dimensions
var stageW = 250;//"100%";
var stageH = 180;//"100%";
// ATTRIBUTES
var attributes = {};
attributes.id = 'FlabellComponent';
attributes.name = attributes.id;
// PARAMS
var params = {};
params.bgcolor = "#ffffff";
params.menu = "false";
params.scale = 'noScale';
params.allowfullscreen = "true";
params.allowScriptAccess = "always";
//params.wmode = "transparent";//"opaque";
/* FLASH VARS */
var flashvars = {};
/// if commented / delete these lines, the component will take the stage dimensions defined
/// above in "JAVASCRIPT SECTIONS" section or those defined in the settings xml
flashvars.componentWidth = stageW;
flashvars.componentHeight = stageH;
/// path to the content folder(where the xml files, images or video are nested)
/// if you want to use absolute paths(like "http://domain.com/images/....") then leave it empty("")
flashvars.pathToFiles = "rate/passion-cams/poll/";
//
flashvars.id = "12345";
//
flashvars.xmlPath = "xml/settings.xml";
flashvars.xmlContentPath = "xml/content.xml";
//
flashvars.checkIpScriptPath = "php/checkIP.php";
flashvars.voteScriptPath = "php/vote.php";
/** EMBED THE SWF**/
swfobject.embedSWF('media/preview.swf'+cacheBuster, attributes.id, stageW, stageH, '9.0.45', 'media/expressinstall.swf', flashvars, params, attributes);
if(swfmacmousewheel) swfmacmousewheel.registerObject(attributes.id);
</script>
<table width="100%" height="100%" cellpadding="0" cellspacing="0">
<td align="center">
<!-- this div will be overwritten by SWF object -->
<div id="FlabellComponent">
<p>In order to view this object you need Flash Player 9+ support!</p>
<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>
</td>
</table>
</body>
</html>
Nogen som kan hjælpe mig med problemet?