The style hooks appear to be (for the main player):
Code:
#profile_mp3Player object
And for friends submitted flash:
Code:
td.columnsWidening object
Also, be aware That I don't see any friend submitted flash on the page you are editing, though I may have missed it, there are a number of animated gif images though, these (and all friend submitted images) will be styled with:
Code:
td.columnsWidening img
Since these should generally all be treated the same, use the compound selector:
Code:
td.columnsWidening object, td.columnsWidening img {
rules go here
}
Now, as I'm not sure if your styles come before the mySpace default styles or not, if any of yours have even a chance of contradicting the defaults, they should be followed by the !important keyword, ex:
Code:
#profile_mp3Player object {
position: absolute!important;
left: 20px!important;
top: 250px!important;
}
In fact, write them all like that, just to be on the safe side.
Bookmarks