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. |
|
|
|
May 31 2009, 11:11 AM
Post
#3
|
|
|
Member ![]() ![]() Group: Member Posts: 10 Joined: Oct 2008 Member No: 693,488 |
I'm going to try that! Honestly thank you so much for reply. I'm sold on Createblog.com, I'll probably be an active member here now. Thanks again, I'll tell you how it goes!
Hey, I tried the code, but right now the player is not visible. I added z-index: 11; but it didn't work. Suggestions? EDIT: Never mind, It was off the side of the page. So far soo good. It worked! All is good. Thank you so much. I greatly appreciate your help and quick reply. |
|
|
|
May 31 2009, 12:24 PM
Post
#4
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 1,237 Joined: May 2008 Member No: 648,123 |
no problem. in the future, though, use the edit button instead of double & triple posting. the mods will hate you if you don't. ;)
|
|
|
|
May 31 2009, 09:53 PM
Post
#5
|
|
![]() Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Administrator Posts: 8,629 Joined: Jan 2007 Member No: 498,468 |
|
|
|
|
![]() ![]() |