|
If I understand correctly, you want the Flash content centered on the page vertically and horizontally, regardless of the screen resolution? If so, you just need to place all the flash content inside a div and give that div a bit of styling:
1. in your css, remove all styling currently in #flashContent
2. in your html, remove the second div tag ( <div align="center"> ), it is not necessary
3. then in your css, add: #flashContent { position:absolute;left:50%;margin-left:-450px;top:50%;margin-top:-300px; }
Now your Flash content will be centered vertically and horizontally on your page at all times, regardless of screen resolution. Hope this helps!
|