Xiaxue-berry
I use these;
#multimedia {visibility: hidden; position: absolute; left: 0px; top: 0px;}
#multimedia embed, #multimedia object {height: 100px; width: 100px;}
.media_panel { visibility: hidden; height: 0px; position: absolute; left: -2000px; }
But none are working. :c
It'd help us help you if we could see your profile, or if you at least told us whether your profile is Current or Classic (different code for different profile types). The problem may be that if you use visibility:hidden to make a media panel hidden, it won't actually play on some browsers. The options that we're left with are mostly quite stupid code-wise, but then again so is hidden media in general. Not everyone may share your music taste, so if your media is hidden people may just immediately leave your profile to get away from the music that they can't pause.
If you still want to hide it anyway, try this instead (as in remove that code and put this in).
For current profiles:
.media_panel{
position:fixed;
left:-1000px;
top:-1000px;
}
OR for classic profiles (don't use both codes! You only need one!):
#multimedia{
position:fixed;
left:-1000px;
top:-1000px;
}