MySpace Band Music Player Color Skin Move
Band Music Player Moving, Removing, Hiding, Coloring, adding an image Skin
This article was updated 26 September 2008 due to myspace code changes
27 September: MySpace changed their code again last night, breaking some of my changes. I should have expected this change, but still hesitate to update this content further until MySpace decides if they want the player one div, or two divs deep. Personally I liked 2 divs deep.
Removing the Band Music Player
Addressing the Band Music Player
Moving the Player
Making your Player show On Top, instead of Under, another Element, Problems with player layering
Allowing your background to show through your player
The page the below link goes to has not yet been updated. Maybe this evening.
Tool for Generating Code To apply Color or Image Skin to the Band Player
Addressing the Band Music Player
To get a better idea, of what I am describing, you may want to view the following myspace page. I have added styling to the page to show the page elements, classes, and layering.
www.myspace.com/music3test
Looking at the above page, one can see that the music player is in the right column.
The right column is in class text.
The player is at this level:
table td table td.text div object
If you add any objects, you need to give them their own class, so that any code to style/move the music player, can be coded so as to NOT effect other objects.
removing the Band Music Player
do NOT set the player to autoplay, in some browsers it will play, even if hidden.
This code will remove the player and the space it occupied, and move your shows (or blogs if you have no shows) up a slight amount to account for the carriage returns left behind when the player was removed.
This code can go at the very top of the Bio.
<i class=i>START CODE to Hide Band Music Player.
<a href="xiii.us/eGen/mpSkin.php">
Music Player Skins</a>
<a href="http://xiii.us/eGen/mpSkin.php">
Music Player Skins</a>
<a href="views-under-construction.blogspot.com/2006/01/myspace-band-music-player-color-skin.html">
My Space band music player Code by Eileen</a>
</i>
<style>
table table td.text div object, .i {display:none}
table table td.text div, table table td.text div.i div {height:auto !important;}
table table td.text div {margin-top:-13px;}
table table td.text table div {margin-top:0px;}
</style>
<i class=i>END code to Hide Music Player</i>
Moving the Player
Absolute Positioning, measuring from Top Center:
This is the method MOST div overlay strategies require.
(If using my div overlay strategy this is NOT the best positioning method)
This may also work well, without a div overlay, if the location you are placing the player is NOT very far from the top of the page.
This code can go at the top of the Bio:
<i class=i>START CODE to Move Band Music Player.
<a href="xiii.us/eGen/mpSkin.php">
Music Player Skins</a>
<a href="http://www.msplinks.com/MDFodHRwOi8veGlpaS51cy9lR2VuL21wU2tpbi5waHA=">
Music Player Skins</a>
<a href="views-under-construction.blogspot.com/2006/01/myspace-band-music-player-color-skin.html">
My Space band music player Code by Eileen</a>
The below code centers the Player 200px from the top. You can change the top and left-margin values.
</i>
<style>
.i {display:none;}
table table td.text div object {position:absolute; top:200px; left:50%; margin-left:-225px; z-index:9}
table table td.text div object object {position:static; margin-right:0px; margin-left:0px;}
table table td.text div, table table td.text div.i div {height:auto !important;}
table table td.text div {margin-top:-13px;}
table table td.text table div {margin-top:0px;}
</style>
<i class=i>END Code to Move Band Player</i>
Absolute Positioning, measuring from Top Left:
Use this strategy ONLY IF your player is logically inside a parent container, that you are positioning relative to.
IF you used MY Div Overlay Strategy, You Want to Use This Method
<a href="views-under-construction.blogspot.com/2006/01/myspace-band-music-player-color-skin.html">
My Space band music player Code by Eileen</a>
The below code places the Player 100px from the Top and 20px from the Left of the closest Parent Div that has a position command.
You can change the top and left px values.
</i>
<style>
.i {display:none;}
table table td.text div object {position:absolute; top:100px; left:20px; z-index:9}
table table td.text div object object {position:static;}
table table td.text div, table table td.text div.i div {height:auto !important;}
table table td.text div {margin-top:-13px;}
table table td.text table div {margin-top:0px;}
</style>
<i class=i>END Code to Move Band Player</i>
Layering the Player, Solve problems with player sitting under, instead of on top of, another Div.
A change to the myspace default/core code, which occurred in either late May or early June 08, some people discovered that their band music player, was no longer showing.
On the pages I looked at, the player was hidden under another element (usually a custom div).
The solution is z-index (The same myspace code change which caused the problem also allowed the player to utilize z-index).
<style>
.i {display:none;}
table table object {position:relative;
top:0px;
z-index:9 !important;}
</style>
The above code MAY effect other objects on your page. The position command is needed, in most cases. You can change it to position:absolute, and change the top value, add left and margin values, as needed.You may have to adjust this on other objects as well.
Allowing your background to show through your player
Place this code at the very top of your bio:
<a class=i href="http://xiii.us/ms/band-music-player">
MySpace Band Music Player Style Skin Tutorial</a>
<style>
table table td.text div object {filter:alpha(opacity = 40);}
table table td.text div object object {opacity:0.4;}
.i {display:none;}
</style>
Prevent Effects on Other Objects When moving or styling Band Player
If you are adding other objects to your page, and they will fall at the same level as the player, you MUST give them their own class, or they will be effected by the band player code.
i.e.
<div class="myObject1">
Your object code here.
If you are doing a cut and paste of code,
from another site, paste that code here.
</div>
<style>
div.myObject1 {position:static;
background-color:transparent;
background-image:none;
-moz-opacity:1;
filter:none;}
</style>
35 Comments:
is there anyway to add a skin to a band music player, if you have one copied onto your page, because neither of the codes here seem able to do that.
Yes, but it does require that you muck with the player placement, even if placing it as close as possible, back into its default location.
I have slightly different code here:
music player skin for band player
I am re-testing this code now, since I know myspace has made changes since my last tests.
If it does not work for you, I will need to look at your page, with the code applied.
Hi, just wondering if there is a way of creating a skin for the band player so that all the controls and text (song titles etc) are at 100% opacity, but the background is completely transparent so that the bg of the myspace page is fully visible? So going a bit further than just adjusting the opacity of the whole player... Thank you in advance for any light you can shed on this one.
No,
There is no way to zone the opacity, that I know of.
You would have to re-create the controls, and song names (which will only work if you don't have the scroll thing on the side of the player).
Sorry
No worries, thank you for your help, at least I won't spend any more time trying to do the impossible:-) Cheers!
Hello, So i was trying to use your code like this
.i {display:none;}table table object, table table embed {position:absolute; top:1030px;
right:365px; z-index:9 !important;}
and when i do place it. the top part the "Videos and Fans" Seccion goes crazy. can you help me out???
the myspace is www.myspace.com/IsLokosRecords
my email is dahbossontop@gmail.com
Hello, is me again. ***sorry for bother to much.*** and first of all i would like to thanks for the help. **** so i got my lil brothers band profile the myspace is www.myspace.com/IsLokosRecords
i got 2 seccion where i put a video and a flash picture thing. but everytime i try to move the music player the
"Videos and Fans" Seccion goes crazy. i had tried couple thing and is not working. the code im using from you is .i {display:none;}table table object, table table embed {position:absolute; top:1030px;
right:365px; z-index:9 !important;}
so can you please really really please help me???? the page is www.myspace.com/IsLokosRecords
my email is dahbossontop@gmail.com if you please answer me please. ***
Hello:)... First of all.. thanks so much for taking the time to reply my comment... seriously its not much ppl that actually help another. i know you have a life. and for you to take couple minutes to help me... man it gives me hopes that there is still ppl out there worth to live for... i did repley your email. but again thanks so much:)
Hello, Sir. how are you doing? well i hope you are doing great... about what you wrote me im still confused i did put them in a class and all. but still doing the same. thing. can u help me please.
I'm sorry for calling you sir by the way... i just wrote some of your profile..!!!!
When i put the code into the 'Sounds Like' section and preview, it hides the submit button?!iz
how do u make the band music player smaller
yeah i had the same problem... the submit button is covered by the player so there is no way to save it. any ideas?
If you use SAFE MODE the submit button is not covered.
Is it?
can you show us a nice skin that has been changed. i've spent 3 long hrs trying to recreate and modify thru the links here. getting worst look than original. bit upset :(
all da best
Yea, here are some examples:
This One Works, but it is hard to see the song names.
This one works
But the band player is difficult, because there is no div there, so it has to be created.
This means re-positioning the player.
I think the technique I use on the generator tool is cleaner (not as accurate, but the code is less messy).
The skin sits UNDER the player, it should not effect how the player works
UNLESS
you are using a Mac or the PC version of Safari.
In this case there is a side effect.
I don't have a Mac to test with.
So I don't know the degree of the problem.
But it has been reported.
(I really need to get a Mac so I can test on one).
Hey how's it going? I designed my own myspace page, and added a header banner at the top of my page. I wanted to move my music player up where my header banner is. The problem is when I moved it up I cant see it because it go's under the banner! I used your code but it still don't work! It just stays to the right and I can only see half of it. What must I do to move the player where I want and make the player go over the banner, and not under????
i am working on a page that requires moving the player but not the twitter objects in the band member section.
myspace.com/deifirretmai
when i give the table for my band member section a new class, it hides the table all together. I think I have a code blocking it but i cannot tell. Any help??
I used the code with the Z-index and the player does indeed move to the front of the page, but the pause buttons etc arent working on mozilla firefox anymore
Did i do something wrong?
I could realy use some help. I followed your instructions in making a band myspace and just days after posting it MySpace changes code and new player and such. Now the bands myspace looks messed up. myspace.com/colorsintheair
the big black space is where the player use to be and the shows has a long blank scroll bar cutting down out of the box. Iv been trying to find a solution. If I delete the shows div, the player shows up in the right spot but not all is visible. its being cut off at the custom size. I dont want to have to make dramatic changes to the layout. Can you help me get the shows and player looking right?
Thanks,
West
you explained how to move the player forward if it was behind something, I was wondering how I would move my profile info and picture foreword if it is behind something. Thanks in advance for any help!
Hello,
I am curious if the above instructions are up-to-date or if they need to updated after MySpace made another code changes.
Thank you so much for info!
The instructions need to be updated.
I have not even tested them since the most recent changes.
The below code addresses the player, but for me, kept placing it at the bottom of the page under my main div.
.i {display:none;}
table table td.text div div {position:absolute; top:100px; left:20px; z-index:9}
table table td.text div, table table td.text div.i div {height:auto !important;}
table table td.text div {margin-top:-13px;}
table table td.text table div {margin-top:0px;}
if you remove the second 'div' however, it (for me) placed it back where i had wanted it ontop of the div.
.i {display:none;}
table table td.text div {position:absolute; top:100px; left:20px; z-index:9}
table table td.text div, table table td.text div.i div {height:auto !important;}
table table td.text div {margin-top:-13px;}
table table td.text table div {margin-top:0px;}
if thats of any help to you eileen.
thanks for your code :D
Eileen... I just want to say thank god I found your site :) I have spent the past few weeks pulling my hair out trying to customize my Band page... with stupid sites code!!! Love you're work and will pass on to as many other bands as I can :)
Hi,
Does anyone know if there is a way to get a div with a background image to display ON TOP of the player? I have an image which is mostly transparent but will make the background look as though it is overlaping parts of the player if it can be placed on top of the player. I have my div positioned correctly but no matter what z-index i use the music player always shows on top of this div not under it.
the site is www.myspace.com/ralphstest
Thanks!
My Myspace Band Music Player is overlapping my Tour Date Information. How can I move the player without changing the tour dates location?
You have to move the player independently of its parent div.
If you try to move its parent div, that will effect the shows.
If you also want a music player skin, you have to create your own div to hold the skin (if you try to use the one that is there, it effects the shows div).
but how do i move the player independently?
Hello my friends and hello Eileen!
Some months ago I built a myspace site with your old BAND div overlay tutorial. But now I realized that I cant move my shows and my player separatly, and that two of my links (links are at my face) on the right side are not working when the show-table is beneath it...
Whats wrong with it? Im not allowed to insert my code here... :-(
www.myspace.com/manuelmorning
THANK YOU
Yours Manuel
the code to hide the music player seems to only work in firefox... when i view my page in safari the music player is still there
help!
Are you using a Mac or a PC
I will try to re-test everything.
I may not have tested this on a Mac.
i am still very confused i have a band page on myspace and i am still not sure how to change the color!?
I appreciate this greatly but I am my problem is a bit different. I am merely trying to move my music player on my bands page a little to the right to square up with the other collums on the right hand side and this code moves my network collum under the menu, and when I put in the px to move it where I want it sits on top of the my network collum. Confused and any help would be had. Thanks
Hi,
I have used this code on a profile and it works fine. I was just wondering if there is a way i can set it so that it reserves it's own space on the page when it is moved. Sorry if that's hard to understand, not sure how to word it. But i mean like when you put something in the Bio section, it reserves its own space and the whole page moves with it. Can this be done so that when the player is up the top, everything such as the Contact Table automatically moves below it.
Thanks
Post a Comment
Due to Excessive Spam, I have turned on comment moderation.
Links to this post:
Create a Link
<< Home