if you leave it alone the music player is right over the picture, so i moved it to the top left corner. here is the code i'm using to move the music player
CODE
<style type="text/css">
object {
position: absolute;
visibility: visible;
left: 0px;
top: 0px;
}
</style>
object {
position: absolute;
visibility: visible;
left: 0px;
top: 0px;
}
</style>
i have a youtube video in my profile and here is the code for it
CODE
<center>
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/sHzdsFiBbFc" height="210" width="250">
<param name="movie" value="http://www.youtube.com/v/sHzdsFiBbFc" />
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
</object>
<object type="application/x-shockwave-flash" data="http://www.youtube.com/v/sHzdsFiBbFc" height="210" width="250">
<param name="movie" value="http://www.youtube.com/v/sHzdsFiBbFc" />
<param name="allowScriptAccess" value="never" />
<param name="allowNetworking" value="internal" />
</object>
if i take out the code to move the music player, the video is perfectly fine. but when i use that code, it moves both objects. so now the video is in the top left of it's div, and it sits over my text.
how can i move the music player without moving the video?

