Move player without moving flash objects |
Move player without moving flash objects |
May 31 2009, 09:07 AM
Post
#1
|
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Oct 2008 Member No: 693,488 |
Hey everyone, I'm coming to you as my last resort hoping someone here can help me.
When I move my band music player all the flash widgets go crazy. I found a code that seemed to work and moved the player but not the flash but it gives me the a box (same size as the music player) above the actual player. At first I didn't notice it, but when I couldn't click on links I change the background color to black revealing that it was covering. I'm completely stuck. I've done my research, searched some forums, posted other places, but still no solution. Any help would be great. This is the code I'm using: CODE <style> .a {position 4 song band player} td.text object {display:block; ..; position:absolute; top:380px left:50%;!important;margin-left:-125px; visibility:visible; background-color: black;} td.text td td object {position:static; margin-left:0px;} </style> This is an example of what's happening:
|
|
|
|
![]() |
May 31 2009, 09:25 AM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
try using this instead:
CODE td.text object { left:50%; margin:380px 0 0 -125px!important; position:absolute; top:0; } td.text object object, td.text td object { left:auto; margin:auto!important; position:static; top:auto; } when myspace came out with the new music player, an extra object tag was nested inside the music player (do display correctly for IE users), so you also need to set object object to a static position. also, for firefox, the declaration !important needs to be applied to margins to work right (otherwise, firefox doubles the margin properties). your !important was outside the style property, so it won't make a difference. |
|
|
|
henrybayuzick Move player without moving flash objects May 31 2009, 09:07 AM
henrybayuzick I'm going to try that! Honestly thank you ... May 31 2009, 11:11 AM
fixtatik no problem. in the future, though, use the edit bu... May 31 2009, 12:24 PM
manny-the-dino QUOTE(fixtatik @ May 31 2009, 10:24 AM) n... May 31 2009, 09:53 PM![]() ![]() |