Looking at This Diagram , which shows the Layout of the Myspace Music Page; I can see that the music player can be addressed as follows;
table table td.text div object
I also know (because I read the code to troubleshoot some issues) that for Non IE browsers, it is really here:
table table td.text div object object
There are other ways of addressing the music player, I prefer the above syntax.
It is as explicit as reasonable. If I was overriding something, or thought there would be a need to over ride this code line, it might make since to do this:
table td table td.text div object
If I have other objects on my page, it becomes more important that I address my player as explicitly as possible. If I do not, it is not as important.
If I have no other objects on my page, I can take the super shortcut.
I can use just this
object {the stuff I want to do to it}
If I want to move the player, to the top left of my page (or my div if I have installed my div such that the player is logically inside it). I do this:
<style>
.i {display:none;}
table table td.text div object {position:absolute; top:0px; left:0px;}
table table td.text div object object {position:static}
</style>
If I want to move the player 100 pixels to the right, of its current location, I do this:
<style>
.i {display:none;}
table table td.text div object {position:relative; top:0px; right:-100px;}
table table td.text div object object {position:static;}
</style>
If I want to position my player, with reference to the top center of the page, I want to use this:<style>
.i {display:none;}
table table td.text div object {position:absolute; top:0px; left:50%; margin-left:-100px;}
table table td.text div object object {position:static; margin-left:0px;}
</style>
Unless you are using a div overlay, which uses a concept that allows it to be used as a reference point for the absolute positioning of the myspace page elements, you want to use the above method.If you used my div overlay strategy, you can instead use the top left of your div as the reference, and use the example that does not require the margin-left value.
In both examples, left can be changed to right; and the numbers can be altered to work with your profile.
However, do NOT change the 50%, that is what allows you to measure from the center.
50% is the ONLY value that will insure you are measuring from the center, no matter what the screen/page size is.
It is no longer as easy to resize the player. Shrinking the player crops it, instead of really shrinking it.
A matrix filter can be used, in IE, to shrink it, but then the controls do not align correctly (and the filter does not work in other browsers).
IF you have other objects, on your page, Give those objects their own class (or put them in a div with its own class)
Then for each style attribute, you set for the music player, you need to have an override command, to set that style attribute, for your other objects.
For example:
<div class="myObject1">
object code here
</div>Now I insure that I have set the position for this object. If I want it to position using flow (meaning I just let it fall, where it will, based on where I put the code) I need to assign position:static. This is to override the position:absolute which was applied to the music player object.
<style>
table table td.text div.myObject1 object{position:static !important;}
</style>OR, you can apply positioning to the object.
However, since you have it in a div, it really makes more sense to just position the div.
<style>
div.myObject1 {position:absolute; top:300px; left:50%; margin-left:-100px;}
table table td.text div.myObject1 object{position:static !important;}
</style>Notice that I still assigned the object position:static to override what I had applied to the music player object.

158 comments:
Ok I'm back with another question.
I love the code you have for moving the myspace player and sizing it but my question is how do I get the player to go into a scrolling area?
Or is it something I can't do?
thank you!
-V.M.
Getting the music player into a scroll area, is very dependent on what else you are doing, and what myspace is currently blocking.
I can think of two ways to do this.
1) You can start a scroll area at the end of the "sounds like" section.
However, if you want it to include the music player, there is no chance to close it off, until you get to the start of the bio.
Therefore, if the music player, is the only item you are displaying, in that area, you can put it in a scroll box. Other items in that space are shows and blogs.
2) Re-create the music player, and hide the default.
There is a way to do this.
But myspace has been adding in more and more ways to block this, because so many of these players are being copied from artist pages to non artist pages.
This method gives you the most flexibility.
I did just do a test, and I was able to copy the music player, and put it into a scroll box.
It loaded faster than the default player.
What I did was this:
I took the string which is in their music player code, as the
movie=
The way to know if you have the right string, is to test it as a lone browser address.
Paste it into the address of your browser.
If the player comes up, you have accessed the player directly.
It will be much larger than the default.
Then I used the code here:
Video Posting"
Replace BOTH "X"s with the address.
Don't worry about the parameter settings.
I found that the player worked fine without them.
Even when I switched from auto play to not auto play, it seemed to know what to do, just with the video address string.
I am going to test adding another song, and see if that requires that I change anything, or if that automatically gets stored as well.
Once you have your custom object block, you can render the default player {display:none;}
With a custom object block, you can put it in a scroll box wherever you want.
Eileen.. You rock!
But where would you paste that code??? I've got a slideshow in the "Bio" bit and whenever I paste the code, it resizes that instead of the music player!
Does it resize the slide show INSTEAD of the music player, or does it resize both (which is the behavior I would expect).
Solution:
When you put in your slide show put it inside a div, and give it its own class.
i.e.
<div class="mySlideShow">
put your slide show code here
</div>
<style>
table table td.text object, table table td.text embed {width: px; height: px;}
table table td.text div.mySlideShow object {width: px; height: px;}
</style>
Put in the desired sizes, using different sizes for your slideshow and your music player.
hi, you didn't explain how to put a scrollarea at the bottom of the page.
I already did the copying the myspace player and hide the original, but it doesn't work with the auto play function. (thay both play at the same time)
my myspace is
http://www.myspace.com/niniaconfrenillos
or... put it in the scrollarea I already have.
inside my div...
Hi again coboble... hopeing you can help here. The music player for www.myapace.com/musicbyminor tests fine in IE and FF on the PC, but will play only the first song in safari or ff on the mac (the stop and pause buttons don't work and you can't click on the next track). Any guesses as to why? Again, many thanks for your help.
Hi,
no, I have no idea what the problem is, and I don't own a mac, so I can not test it for you.
However, if you post a question to this group:
mySpace Forum mygen.co.uk
Some of the people who hang out there know a lot more about the flash and music player than I know.
Thanks!
Hi! Thanks for everything! just another question...how can i get the player from my band pasted into my personal myspace page??
You can't, without violating the terms of service and having both pages deleted.
MySpace is really starting to enforce this one, and they do have ways of searching out this type of thing.
The best you can do is to add the single song, or use a player from another service that allows multiple songs.
Sorry.
hi (: i'm so annoyed. since myspace changed the music player it overlaps the div i made which is a pink replacement of the blue boxes: www.myspace.com/rubyfuckingmae
and kjsdfjksd!!
i've tried re positioning it a hundred times but the only code that works for me is
td td embed {position:absolute;_position:absolute; left:50%;_left:50%; top:425px;_top:425px; width:295px;_width:295px; height:51px;_height:51px; }
td td td embed { position:static;_position:static; width:auto;_width:auto; height:auto;_height:auto; }
td td object {position:absolute;_position:absolute; left:50%;_left:50%; top:425px;_top:425px; width:295px;_width:295px; height:51px;_height:51px; }
td td td object { position:static;_position:static; width:auto;_width:auto; height:auto;_height:auto; }
that one and it works fine in moving it up so it's no longer overlapping the div but it will not move it left or right and just leaves it in the middle of the page :(
please help!
Ruby-mae
I don't think you want to move the player at all.
Resizing doesn't seem to work anymore, but instead clips it down.
I recommend the following:
First remove the code which is effecting the positioning of the player.
You have multiple code lines doing this
One is down where you have this:
{ hides blurbs }
Remove this:
embed, object
{display:block; width:320px; height:45px;}
Then remove this stuff:
td td embed {position:absolute;_position:absolute; top:425px;_top:425px; left:55.7%;_left:55.7%; width:295px;_width:295px; height:51px;_height:51px; margin-left:-10px;_margin-left:-10px; }
td td td embed { position:absolute;_position:absolute; width:auto;_width:auto; height:auto;_height:auto; }
td td object {position:absolute;_position:absolute; top:425px;_top:425px; left:55.7%;_left:55.7%; width:295px;_width:295px; height:51px;_height:51px; margin-left:-10px;_margin-left:-10px; }
td td td object { position:absolute;_position:absolute; width:auto;_width:auto; height:auto;_height:auto; }
Notice that the player now lines up, and no longer overlaps.
To eliminate the excess space you could have used a negative margin on the top of your interests and details, but you have eliminated this.
You need to add a class to the table you created in place of table.interestsAndDetails, so you can put a negative margin there, to suck up the excess space.
That seems like a lot of work just to change movies to films.
to get rid of excess space on the top do this:
table.profileInfo {margin-bottom:-10px;}
Then for the bottom:
table.CLASS-YOU-ASSIGN-TO-YOUR-TABLE
{margin-top:-40px;}
Hey Eileen,
Ive been reading your myspace tips and they have really been helping me out, in fact more so than any other resource i have found so far on the web. So I really appreciate it.
I've held off for 2 days now asking you trying to figure out what the hell is going wrong with a div layout I have done (my first one too), the problem lies with everything that is flash in the profile.
I just cant seem to get things to move in to the correct place, and then when I do it moves another flash object, or just has no effect at all.
the profile
www.myspace.com/iantestcarey
you can message me from there if you like and I could show you my code, that is, of course only if you have the time to do so.
Best Regards,
Brad
Hey Eileen :)
I made myself a div layout, but im having trouble trying to make my music player appear. I've tried various codes to make it show up, but still no luck :(
I'd like to be able to put it up the top left hand corner, but as its a div layout nothing seems to work!
Any tips?
Many thanks :)
Jazzie xx
(www.myspace.com/kinkydudette) << I didnt make up that addy haha :P
Jazzie
You have the player hidden multiple times in your profile.
The player is at level:
table table div object
(or embed)
Also addressable as
td td div object
If you do this
table div {visibility:hidden}
you will NOT see the player.
You have also sized the player to zero (in FireFox, not IE)
Remove this line:
td td embed {position:absolute; left:50%; margin-left:-150px; top:0px; width:0px; height:0px; }
Add this:
table td table td div object, table td table td div embed {visibility:visible !important; position:absolute !important; top:110px; left:50%; margin-left:-200px;}
Put in the values you want.
And if you want to color it a nice shade of green to go with your profile (which is rather nice looking) try this:
add color to music player
But if you do use the above color strategy, you will want to position the div that holds the music player and not just the object (or embed).
Brad
The only thing I saw which stood out, as a potential problem, is the use of embed to position the player.
You need to use OBJECT only, not embed.
This will position cross browser.
I don't know when myspace introduced the change, which caused the problem, but at one point I had to use EMBED to position in FireFox and OBJECT to position in other browsers.
Then something occurred in the myspace code, causing the use of both embed and object to do double movement (as if the px values were doubled).
You should be able to position your player like this:
table table td.text object {position:absolute; top:Ypx; left:50%; margin-left:-Xpx;}
Remove the code where you address it as an embed.
Try to avoid cross browser coding (different values for IE and FF).
Instead allow enough leeway in your design, for the player to look good positioned slightly different cross browser.
I didn't always recommend this, but now that I test in 5 browsers, I am seeing that if I need separate IE only code for IE, then likely my positioning will look poor in Opera (and possibly other browsers).
Hey Eileen,
Thanks for the info.
However,... :(
I tried what you suggested and it didnt have any effect. How frustrating is myspace????!!!!
OK I then tried to completly remove all other references to the other 2 flash movies in the page (1, a flash rss reader that should be above the band across the page near the top thats called "events" 2, the beatport player)
After removing these, and also the css code for them of which (as with all the css) is in the bio section.
All my code is split up bio holds the css and the rest of the boxes contain the page layout and content.
SO even after removing all other flash the player still refuses to move.
any ideas whats going wrong?
And do you by chance offer any services with this kind of thing? I'b be willing to pay to get this right as i have been spending far far longer than i should have been on it!!
once again thanks for your help.
Brads
Eileen,
Thank you so much!!
Finally now when i click my page, the player doesnt stop :D
And i can move it to whereever i want :)
I know where to come now if i ever need any help lol.
If i can ever repay you, then let me know :)
Jazzie xx
Brads
Remove this:
table td.text object {
left:50%;
margin-left:-878px;
top:1356px;
position:relative;
}
Add this:
object {position:absolute !important; top:1555px !important; right:50%; margin-right:31px;}
I just tested it with your profile, in 3 browsers.
There was slight positioning difference, but that is caused by the rest of your profile, and your general strategy.
But your design allows for enough leeway to accomodate this small difference.
You could add IE specific coding to decrease some of the difference, but I am not sure if it is worth it.
Don't mix position:relative with
this:
left:50%; margin-left:-X
That is used with absolute positioning to measure from the center, since the left and right varies with the size of the browser window.
If you add any other objects to the profile (such as picture slide shows, videos, or anything wrapped in object tags) give them their own class.
(As for paying me back, I am not in need of money, but I need links to my site, from multiple other sites. So if you have any websites, you can link from, that will be appreciated. But thank you for offering to Pay).
Hello, i have a div layout on my page at the moment and i'm trying to position the music player over a particular part of the layout, i've managed to re-size and move the player but it's behind the div image so you can't see it. is there any way of putting it on top of the image?
the code i'm using atm is;
td td embed, td td object{position:absolute; left:633px; top:685px; width:200px; height:35px;}
td.text embed {width:200px; height:35px;}
td.text embed, td.text object {width:200px; height:35px;}
thanks.
-sarah
Eileen...great stuff here! Very helpful! I have a question...How would I place a border around the band music player?
Also, using your codes, I was able to recreate my band page left column as a table and div rather then the standard general info, but I cannot seem to hide the Member since in IE...maybe I am duplictaing code or something. I also seem to be having an issue with IE that I cannot resolve. The page loads fine but when trying to scroll up or down it is so inbelievably slow like something is hanging it up. Works fine in FF.
The page is http://www.myspace.com/plank63music
Thanks!
Ok so I stumped...is there a way to insert the myspace music player (band page) into a message? What about a blog or a bulletin?
Thanks,
J
The only way I know of, to put a border around the music player, is to put it inside a div, and apply the border to the div.
But doing this, requires that you absolutely position your player (pick it up and plop it back down) which is not necessarily accurate.
There is a way to make it accurate, but that requires a huge chunk of code, where you put custom code in the general section, to put a div around the right column. This allows you to measure from this right column, instead of the top of the page, when you absolutely place the player inside the div, which is going to serve as the border.
So how bad do you want this, and how much work are you willing to put into it.
The best way to hide the member since is to cover it.
On your page, I would stuff it under the url, which you added a background image to.
In the same code line where you add the background to the url add this:
position:relative; top:60px; margin-top:-60px;
Now in the line below, where you reverse the effect of the background image add this:
position:static, margin-top:0px;
Adjust it until it looks the way you want.
anonymous
Yes,
But it is against the terms of service, so I am not going to tell you how to do it.
Sorry.
I didn't make the rule, and the only reason I can think of, for having such a rule, is resources.
The band player takes up a lot of resources, and they (myspace) does not want it on non band pages or in bulletins.
Well I certainly am not THAT worried about the border! HA! But thanks for the answer. Since I have other things moving stuff around, it would be too much to try to figure out exactly where to drop in the player so I will leave it alone.
As for the covering the member since...that worked excellent for Firefox...but didn't work at all for IE (I hate IE!!)
As for covering the member since, I just tested it in IE and FireFox and this worked for me:
table table table table div strong {position:relative !important; top:100px !important; margin-top:-100px; margin-bottom:10px}
put it in a style block.
Could you explain how to change the skin of the Band Music Player. I thought there was a way to use an image overlay or something on it.
The band music player is much more complicated than the standard player, due to the wmode setting.
You can not overlay it.
What you can do is this:
- Make a copy of the player
- Render the default player display:none
- set the wmode of the player copy to transparent
- Put a skin UNDER the player (this way the buttons and links work).
The complicated piece is getting the player location correct.
I explain the steps and how to do each one here:
music player skins
Hey there...
your tipps are just AMAZING!!! :-)
I have a big problem with me myspace bandpage music player..as you told..they moving is different in IE and Firefox...
Take a look at:
http://www.myspace.com/planetvernissage
i did not use any codes at all, and even now the player is at different positions...:.(
I have NO idea hat to get the player to be on the same spot in IE an Firefox...
i uploaded the complete code of my page to:
http://www.mariakimberly.com/sc13_01_08_2.txt
Any help would be AWSOME! :-(
Maria
ok i have a div myspace layout
whenver i try to move the myspace music player over a div layer, the div overlaps the music player so the music player doesnt show
your tips are really helpfull but
i moved my player and made a custom layout for it
and hide my blogs and made as custom friend list
how would i move my custom friend list up next to my defualt picture and info? please help :( i am very confused
my link is:
http://www.myspace.com/bigteeyoungice
Can somebody help me position my myspace band player at the top right in my overlay. I'm stumped...*notice i have three more objects in my overlay in a different section.
www.myspace.com/campaignmusik
Hello. I read above that you said sizing the player no longer works properly as instead it clips (crops) it down. Do you know if there is a way to scale it down like it used to with the standard size codes?
Thank you for sharing your knowledge with the rest of us, Eileen! Simply the best resource I've ever stumbled across.
I have a question for you if you find the time...
Do you know how to move the snocap music store so it aligns below the music player. I used your code to reposition my player, which worked perfectly. However the music store wants to stay centered.
Thank you in advance for any help you may offer.
JBall
OH!
The profile I'm working on is:
myspace.com/thrive07
Actually I seem to be having a couple of wonky things going on. I have a magenta boarder around the whole thing and some weird flash ad showing up over my friends space. And now the snocap store is rendering inside my show calender.
Thanks again!
OK. I found the little bit of code dealing with the boarder. And I decide to just remove the snocap thingy. However... For the life of me I have no idea why I keep getting a flash ad in my friend space.
If you find the time, I could really use your advise.
Thanks!
alright i use photoshop and am doing a bands myspace how do i make it so that everything will transfer over and function the way it is intended to?
thanks
Help please.... how do i get the code from my bands myspace music player, so that i can paste it in bulletins ect.? Thanks A-lot!
You can not paste the band player code into bulletins, without violating the terms of service.
This one is actually stated in the terms.
Many a page has been deleted for doing this.
Chris,
My photoshop skills are not such that I even knew they did html.
However, if you use any tool, like that, to create html, there is a very HIGH risk it won't work with myspace.
However, if you are only using it to create an image, the image should work with myspace.
If you are doing image slicing (which I hate, although many love it) That should work.
This guy has a tutorial on it:
Image Slicing ImageReady tutorial
Instead of image slicing, I would do this:
Band Div Overlay
OR if you must slice (which does have some advantages) then when you have your sliced code, I still recommend using the above link.
Then where the above puts in the core image, put in your sliced code, as one neat package.
Trust me, it will come out way nicer, with way fewer complications than anyone else's' code (that I have yet seen) for placing this thing on your page.
Hi, I'm sure someone has asked you this question but in search I couldn't find it. I've Created a Image to go behind the entire scrolling part of the myspace profile. how do I input it?
Background Generator Tool
That link will take you to a site, that has a tool, for generating the code to place your background.
(It is not my site, and I have not used this particular tool, but I trust it, as most of this guys stuff really does work better than most other sites.)
Eileen, this is brilliant! Thank you for all the info you provide. I'm having one problem with moving the music player. It all works fine but if someone has posted a comment and embeded a You Tube video, it doesn't show up in the comments but rather tries to take on the position values for the "object". Any suggestions? I've used the < style >
{!-music player-!}
table table td.text object {position...}
< /style > method for positioning.
Thank you!
"grateful"
To avoid having the move music player code effect videos that you add, you need to place your videos in their own class.
Then do an override for the class.
<div class="myVideo">
paste the object code for the video here
</div>
<style>
div.myVideo object {position:static !important;}
</style>
Hi, i followed your tutorial on making a div overlay but i still cannot get my music player to show. My profile is www.myspace.com.wezbeats.
Thanks.
I've tried all the object codes you have on this page, and I can position the player where I want to. But it effects youtube and flash comments left by people. Is there a code that specifically addresses only the musicplayer without effecting objects left in my comments?
Thanks,
Heather
Nevermind, I found out how to move the player. I was in a band profile and I think that was why. Here's the code to move the player without moving other objects on your page that are in the comments (the place where I found it is in the code):
.katamari {http://abrax.us/bbz/MyspaceSongPlayer.php}
.a {position artist/band player}
td.text object {position:relative; top:1197px; left:50%; margin-left:-150px; z-index:9;}
td.text td td object {position:static; margin-left:0px;}
Hey there,
I recently updated my myspace to a newer DIV layout, but can't find the right code to show the music player.
I would like it either at the top left hand corner of the page, or even in one of the scrolly boxes if thats possible :)
If you have any tips then they would be much appreciated!
Many thanks in advance, Jazz :D
(www.myspace.com/kinkydudette) (I didn't make up that addy :P)
Hi Eileen,
First of all, thank you for all your great blogs and information regarding MySpace. Excellent work!
I'm having some problems with the Band Player on the profile I did. I had to take out all the tables as the classes where not assigned properly. And they where messing with my design. But that will take away the band player in Firefox. I can't delete some of the table lines as they will make other tables pop up again. Any suggestion from your side ?
Regards,
Wouter
(http://www.myspace.com/tiesto)
Hi Eileen can you please help me with placing the snocap music store under my music player...I don't have the code for that....send it to me at zipsquadz60@gmail.com
my page is myspace.com/tionpri
my music store stays where my calendar is when I display it....big problem for me
Hi Eileen,
great blog you have here.
I have a problem with an overlay layout and the band player, that should go to another place.
Sadly, the player is overlayed, too.
I tried several tips, given in this blog, but none of them helped. Either all the flash elements disappeared or nothing happened.
Btw, the player should to the gray box.
Thanks,
Daniel
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=243964571
Try this code in your about me instead of the code you used for the player. You can change the top and left value to what you need. This code will let you move the player and not mess up the comments code:
.a {position artist/band player}
td.text object {position:relative; top:1537px; left: 100px;}
td.text td td object {position:static; margin-left:0px;}
But if you want it to show above your code, then you need to make the position absolute and put a z-index: 10; in. Then re-adjust the left and top numbers to move it where you want to.
I got that code from: http://abrax.us/bbz/MyspaceSongPlayer.php
Hi Eileen
I guess you didn't get my question but please help me with this...asap.. and I will be truly in debt to you...
can you please help me with placing the snocap music store under my music player...I don't have the code for that....send it to me at zipsquadz60@gmail.com
my page is myspace.com/tionpri
my music store stays where my calendar is when I display it....big problem for me
I am designing my friend's band profile on myspace and have done it all with photoshop and image slicing, like i would a regular profile. it's all working well but i cant figure out for the life of me how to get the music player or the shows box onto the profile.
his site is myspace.com/iwaschad
as you can see i left black boxes where i want the player and shows to go....i just dont know how to get it there
You need to mess with the z-index I think. I wouldn't know unless I saw your code in your about me. Put z-index: 10; in your code for your player. That will only work though if you have your position set to absolute.
I might need to mess with the z-index, myspace has made a lot of changes since I last tested this code.
But myspace does not take z-index:10, they dot out anything larger than 9.
i dont think i have any code for the music player on there....i used the overlay generator from bbz.com for regular profiles. i didnt know what code to use for the music player or shows...
i had found some things that said they addressed the music player...but none of those worked.
i am a solo artist and trying to insert my music player into bulletins and let other people add it to their pages as well. how do i do this?
thanks,
Tra
ive ot a question, i am currently creating a myspace for my friend who is a music artis is there any way to move his artist music player from the default spot to the top of the page? THANK YOU!
CAN SOMEONE PLEASE TELL ME HOW TO PLACE MY MUSIC PLAYER ON OTHER PEOPLES PICTURE "COMMENTS" SECTIONS? i HAVE SEEN THIS DONE MANY TIMES.
hey how are you doing? i'm trying to move my music player into a bulletin or a comment box but i can not do it? can you tell me how i can move it there???
ok i gotta question i have a band account and my frined has like 3 or 4 players to play all of his songs and i cant find out how to do it can someone help me
Your friend did this by setting up additional band pages, and then copying the players all to one page.
I won't tell you how to do this, because it is against the rules.
The same goes for the previous two questions which would involve making a copy of the player, for posting someone besides the page the player belongs on.
Sorry
My band page is www.myspace.com/shallowpalace
The problem I am having is that the music player looks great and resizes fine on Safari, but in Firefox it doesnt resize at all. Does anyone know why that would be?
hello, i have a music band. but the music player i can't get it to move to the place i want to the seccion where it said "Music" is there anything you can do to help? i tried the code and it works but as soon i put the codes and layout doesnt work anymore. can you help me please
hey, i've moved my player to above the navigation bar. it looks perfect in firefox, but in IE it moves slightly to the left by about 30px and down by around 2px. any idea how i can fix this so it looks the same in all browsers?
and also, i've been trying to move my about me and upcoming shows up to replace the space of where my player used to be.
any ideas?
you can view the page here:
www.myspace.com/sparkinthedarkgigs
thanks
henry
Hello Eileen.
I have worked out how to do most of the stuff on this page without too much drama, but I cannot get this code to work for me!
I couldnt even get the code on this page. I kept gettingthis message:"Your HTML cannot be accepted: Closing tag has no matching opening tag" Is there another way I can send you the code I have?
When I put the code in the 'About me' section, I end up with the player up the top right, above the navigation bar, and the image is in the about me section, above the pic above the bio!!!
I have tried to follow your instructions but am really struggling!
Could you possibly check the page and see if you can get one to work? I would really appreciate it!
Our page is http://www.myspace.com/fenhollen666
HEY EILEEN,
I HAVE SOME REALLY DIFFICULT QUESTION. I AM A BEGINNER. AND I AM DESIGNING A BAND PROFILE. I AM USING A DIV OVERLAY AND ALL SEEMS TO WORK JUST FINE I JUST NEED TO RESIZE THE PLAYER AND THE PLAYER IS ALSO ATTACHED WITH SOMETHING WHITE ON TOP OF THE PLAYER AND THE BOTTOM. CAN YOU PLEASE HELP ON HOW I CAN GET RID OF IT? THAT WILL BE A GREAT HELP. THANK YOU!
Wow... I just wanted to say thanks for the help. I thought none of this was possible, and started telling others that too, untill i found your page!
So thank you!
I also want to say sorry for all the people who dont take the time to read questions that have already been asked on here, thus asking you the same question again. Hopefully they will get the bright idea and just read above at all the other comments and questions.
Well again, thank you for helping so many people!
-Atarah Atkinson
Hi Eileen,
First of all congrats on providing all us idiots with an amazing piece of code. It works like a dream. I am having a rather odd problem with IE however.
In FF, Safari and IE my player is sitting nicely in my profile header but if I maximize the IE window then it shifts position or rather it stays exactly where it is but does not move with according to the newly sized window.
In FF and Safari it does. Is there a piece of code I need to add to make IE play nice?
This is the code I'm using right now:
table table td.text object,
table table td.text embed {
width:310px;
height:238px;
}
table table td.text object {
position:absolute !important;
top:289px !important;
margin-left: -362px;
left: 50%;
z-index: 9;
}
I have noticed that in IE I have to refresh to get it to re-calculate the position.
Does the player place correctly after a refresh?
Can I have a link to look at your page?
Hello Eileen, yeah is me... im still trying to figure out how to make the player work with out makin my video and flash pictur thing go crazy....
so i got this what you send me.
My question is what is the music player code???? to put in the object code??? and what goes in the "style" part???
div class="myObject"
object code/div
style
div. myObject object {position:static !important;}
/style
Hello Eileen, Im having some trouble with my bands music player, I move the player, but it leaves a big gap where the player used to be.
http://www.myspace.com/saydiemichelle
anything i can do to fix this?
For some reaon, when I try to move the music player to the right it won't move... like at all. I don't know if I'm putting the code in the wrong area or what but no matter where I put the code it still doesn't work. I really am aiming to make a layout kind of like this one:http://www.myspace.com/thecomebackseasonnj. I have no idea where to place the codes for these tables or how to make them :[ This is what I have down so far on my tester band page: http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=277356532.
PLEASEEE help me. I've been killing myself over this for weeks now trying to figure it out. I'd appreciate it soo much!
I have a problem, I can't get the music play to stay on top of a banner image. Can you help me out?
I need the code to hide my band music player without hiding other embedded objects. When I use some of the code that I've found it hides my socialvibe badges and my youtube video. Grrrrr. Please help. I just want to hide my band music player at the top right corner of my page. I don't know why it is showing up again. Help!!!
Are your other objects in one of your data sections (bio or General).
If they are you can do this:
table table td.text object, table table td.text embed {display:none}
table table td.text table object,
table table td.text table embed {display:block !important;}
Put it in a style block.
If that doesn't work, because you have placed other objects or embeds at this depth
table table td.text
Then you need to explicitly give those other objects/embeds their own class. Or put them in a div with a class.
Then add this:
table table td.text div.myClass object,
table table td.text div.myClass embed {display:block;}
make sure you use a style block.
Ok I tried the first one and it didn't work, so I'm assuming I have to put them in there on class. Could you tell me how to go about doing that? Haha sorry. And yes it is all in my bio section.
If your object is in your bio section, and the code to hide the band music player hid your object, then I want to look at your page.
Here is my page..
www.myspace.com/tiffs42
Sorry I posted it under anonymous. My page is www.myspace.com/tiffs42
Hi Eileen,
I used your band code several months ago with great success THANKYOU!
However you may have noticed today that myspace have again changed the band profile player. Now the player is showing up in my up and coming shows,
I tried to change the attributes in the existing code.. no success
still remain in the same place. Do i have to create another layer to place the code in there?
Myspace addy below
myspace.com/spottydoggmusic
Thanks
Alan
I need help guys. All I want to do is hide my band music player in the top right corner of my page. I tried this code..
type="text/css">td td embed, object, pram, embed{height:0; width:0}
It worked perfectly EXCEPT it hides other things on my page like videos, other playlists, and my socialvibe badges. I need someone to please explain in detail what code that I need to use to just hide my music player, nothing else. Any help would be greatly appreciated.
Here is my page..
www.myspace.com/tiffs42
Thanks! :)
You have to remove any positioning you have added to the shows div.
The music player is now inside a div, at EXACTLY the same depth as the shows div.
Neither has a class.
You can address the shows like this:
table table td.text div table
You must now go as deep as the table, rather then using the div.
If you shows are in a scroll box, remove the scroll box, as it will effect the music player.
Hi Eileen,
Bit confused here so bare with me,I have 2 parts to your previous code i used for shows.
How and where do i change the code to address the shows section?,
you stated to remove the scroll box for the shows as it will interfere with the player So what will happen to the shows box, do i need to use another code to show that?
Excuse my ignorance...bit of a novice when i comes to div and css, had to change tags to get the code to show on your blog
.style.
{!- shows -!}
table table td.text div {position:absolute; width:440px; height:130px; overflow:scroll; overflow-x:hidden; top:590px; left:505px;}
{!- UnDo effect on Div in Friend and Comment spaces -!}
table table td.text table div {position:static; height:auto; overflow:hidden}
table table td.text div.commentlinks {display:none;}
table table td.text div table {display:block}
{!-fix column width of shows-!}
{!-set below px width to the width of your shows space-!}
table table td.text div table td, table table td.text div table {width:425px;}
table table td.text div table table {width:100% !important}
{!-adjust below value as needed-!}
table table td.text div table table table {width:40% !important}
./style.
.span class="off".!-Style Shows-!./span.
.style.
{!-Border around shows table-!}
table table td.text div table {border:3px solid; border-color:black;}
table table td.text div table table {border:none;}
{!-background of most of the shows space-!}
table table td.text div table td {background-color:pink; }
{!-form inner borders with background color-!}
table table td.text div table table {background-color:maroon ;}
table table td.text div table table table {background-color:transparent;}
.!-style text-!.
table table td.text div table table td.text span.whitetext12 {color:white !important; font-size:13px !important;}
table table td.text div table table a {background-color:transparent; color:black}
table table td.text div table table span.whitelink {background-color:black ; border-bottom:2px black solid;}
table table td.text div table table span.whitelink a {color:white !important; background-color:black !important;}
table table td.text div table table table font{color:black !important; font-size:11px; font-weight:normal}
table table td.text div table table font {color:black !important; font-family:arial !important; font-weight:normal; font-size:12px}
./style.
.span class="off".!-END Style Shows-!./span.
hey eileen.. been moving the band player with this code to customize many artists pages so right now i am on damage control trying to figure this out.. all the updates that i'm reading on the blog talk about the relationship between the player and the shows..
however when i customize pages i usually hide the shows as well as most things on the page.. or i dont even touch that section.. as shown in pages like these..
www.myspace.com/tariknix
www.myspace.com/kasualny
www.myspace.com/chinotheshowstopper
if you could please also break it down for people like me who dont really mess wit the shows section too much that would be much appreciated
ps im a novice and despite how hot my pages come out i have little knowledge of html so go easy on me
i actually just tweaked some parts of the code and got my player to move.. only thing is now the videos in the scroll box have disappeared..
before (when player wouldnt move)
.style..katamari {http://abrax.us/bbz/MyspaceSongPlayer.php}
.a {position artist/band player}
td.text object {position:absolute; top:1850px; left:50%; margin-left:-102px; z-index:9;}
table table td.text embed
td.text td td object {position:static; margin-left:0px;}
./style.
after (when videos in scroll disappeared)
.style..katamari {http://abrax.us/bbz/MyspaceSongPlayer.php}
.a {position mini player anywhere}
embed, object {position:absolute; top:1850px; left:50%; margin-left:-102px; z-index:9;}
td td td embed, td td td object {position:static; margin-left:0px;}
./style.
URL:
www.myspace.com/illimagetestmusic
any suggestions?
Chino do happen to have a code that hides the music player instead of moving it? I need my videos, other playlist, and my socialvibe badges to still show up though.
I need to remove the player from the upper right side and substitute it with my custom player. Is it possible?
I tried the codes you potsed for moving it but they move also other object i set up in the biography section
I just created a new div band layout, and I can't seem to figure out how to make the Music Player show up. I've currently tried all the suggestions you have up, but so far none of them have worked.
I'm a bit of a newbie, and I need some help. :]
I have a question, how can you put the music player on top of the custom layout?
heyy, i am recently doing a myspace layout for a friend and only just learnt how to make div's and stuff, the page is very simple at the moment, but i cant seem to get the band player to go "ontop" of the div i want it too. i want it to sit inside the grey box i created. im so confused its making me crazy, can u help ?
cheers
My problem is:
if I address the player as 'table table td.text object' it affects all my flash objects - it works both in Firefox and Internet Explorer.
If I address the player as 'table table td.text embed' it moves only the player - but it works only in FF and not in IE.
How could I successfully move (only) the music player in FF and IE?
The code I'm using is (works only in FF):
table tr td table tr td.text ojbect, table tr td table tr td.text embed {position:absolute; top:485px; left:50%; margin-left:-225px; width:450px; height:345px;}
table table td.text div, table table td.text div.i div {height:auto !important;}
Please help me.
THANK YOU VERY MUCH
i have a question.
how can you get the music player onto a regular myspace.
i had it before but now the new myspace music artist player wont let me?!
i knwo there is a code!
what is it?
Hey there im into editing pages and now www.myspace.com/ourdefiningmoment
i was editing my bands page and i noticed that with the music code it hides any other objects such as youtube videos how do I put a video in the bio section
-jon
"You need to use OBJECT only, not embed.
This will position cross browser."
I just want to say thankyou, so much... I've tried so many of those myspace layout sites and I could not get the player to move in IE no matter what I did! Thankfully, it now works in Opera, FF, and IE :D
Thankyou again!
-Madz
how do i move the myspace band music player without moving the upcoming shows? I know they are a parent function, but how do i move them individually?
With the aforementioned code
style>
table table td.text object {position:absolute; top:750px; left:475px;}
style>
All objects move to one location of the page.
Is there a way of just moving the player on its own?
The position I have is correct but, It moves every object on the page(i.e. videos, sales boxes and so forth)
here is the link
www.myspace.com/rolysings
Since the other objects are added by you, you have control over the class.
Give your objects a class, and then position them using their own class, so that they don't move with the player.
Or put them in a div, that you assign to a class, that you can use to position them.
example:
<div class="myObject">
object code here
</div>
<style>
div.myObject {position:static}
</style>
Hi There ... I'm having a problem that I think u can help me with ... I'm designing an artist profile,
www.myspace.com/officialdienices
I have a code to move the music player. The code works and successfully moves it to the area I want.
Problem is the player will play the song, but nothing works on the player, no buttons function.
As soon as I take the code off, the music player defaults to its original position and plays fine,
buttons work and songs can be choosen.
My question; Is the anything wrong with the following code that pervents the player to stop working the way its suppose too when I move it to the desired destination.
style
.a {position mini player anywhere}
embed, object {position:absolute; left:50%; top:1126px; margin-left:-215px; z-index:9;}
td td td embed, td td td object {position:static; margin-left:0px;}
style
www.myspace.com/officialdienices
Please get bac to me if u can
How do you just delete the new band Music Player all together or hide it complete what would be the full code so I can just copy and paste it into my about me section
pepper95Thankyou for that code, it worked very well. My only trouble is, how do you centre the music player? It's perfectly centred on my screen, which was the original plan, but on other screens it's off to one side. I've tried align: centre but it didn't work.
Did myspace just change something last night? My vertical position got messed up in firefox. But is correct in safari and IE?!?! help!!!
Ugh...MySpace is killing me with the code changes...anyone have any idea about why the players are in different spots in IE and FIREFOX??
I'm having same issues with different positioning between FF and IE now too. All my profile players are munged now. Help?
i hope it's still possible to get feedback on this.
i want to place my player into a certain position on my site (a div), rather than having it float all over my site.
how do i go about having the player show up at a certain position, lets say i have a pager, and place on that page a div named: player...
how can i have th music player show up directly there, without hiding the original player and using an embed code to place it into that position?
if anybody got anything helpful to say, please hit me up at:
info@notorious-mag.com
what i did to set the position in i.e. and firefox as well
was to put the music player hidden as Eileen explain in her tutorial
and than i load the music player the same way you put a youtube or a flash video "create a new div"
and than as they explain in this blog
http://209.85.229.132/search?q=cache:_hHzpw9GVdoJ:thumlog.com/hack-myspace-band-music-player-embed-code+music+player+firefox+band&hl=en&ct=clnk&cd=2&gl=uk
you load the music player for the position you want.
now for me working perfect in both explorers...
myspace.com/odeith
dude... your player is completely out of place, especially in firefox.
considering what i posted up there, is that possible? it seems pretty logical.
because i really don't want to hide and place my player in there.
ok, I fixed the code, and tested it.
I don't think that copying the player and hiding the original is needed (it is overkill).
But I do see that they eliminated the javascript that was there the other day, and are back to just having the object code in place.
has any1 figured out how to fix this problem with the positioning of the music player changing? its messed up my whole page in firefox..
Yea, didn't the code above work for you.
I don't know what code you are already using, but the problem is the nested object.
Whatever you are using add this line
table table td.text div object object {position:static}
If you used !important on the statement to position the player, then use it on the override statement above as well.
Otherwise, what happens is, the outer object positions, with reference to one of its parents (either the body, or a div that has a position statement).
Then because the outer object has a position statement now, the inner object, uses the outer object as its reference point, and applies the positioning.
This throws the positioning off.
Too see this more clearly add this style line
table table td.text div object {border:6px black dotted}
That line is just to visualize what I am trying to explain, you will want to take it out.
worked.. thank u so much for ur help
Thank you for your help over these last years, your site is the solution every time!
the updated code definitely works better than the old one.
but is it possible to do what i asked for a couple of replies earlier?
Yea, unless I am not looking at the correct question.
Is your player logically inside the div?
IF it is, the task is MUCH easier.
If you have used my div layout strategy it should be logically inside the div.
If you used the more widely published div strategy, it likely is not.
IF your player is logically inside your div, you can position it measuring from top right.
If not, you have to position from top center (assuming your div layout is at least centered).
To position from top left:
table table td.text div object {position:absolute; top:Ypx; left:Xpx}
table table td.text div object object {position:static;}
Where Y is the distance down from the top of your div and X is the distance from the left side of the div.
To position from top center:
table table td.text div object {position:absolute; top:Ypx; left:50%; margin-left:-Xpx}
table table td.text div object object {position:static;}
Y is the distance from the top of the page. Do not expect it to be exactly the same cross browser, but it should be close.
X is the distance left, from center, to move the player.
You can change left to right.
ok i still can't get it to work... i need the code to move the band player around without messing up the comments or the other embbeded objects i have on the page (videos and stuff) is there like a simple code for this?
Hi there, I have a question
So,I have a band profile because well my personal got hacked.
On my music profile I was just uploading songs to my player from my ipod.And like three times it kept saying i was doing like copy infringment. So now I cant even like touch my music player.I hate the songs on them now,so overplayed ha.
BUT!
I found a code to hide it and it worked,but now I cant pause it.
and not only that, but where it used to be is blank.
and there is this HUGE gap from the top of the page down to wear my about me starts.
Its so annoying, any tips on how i can get rid of it?!?!?!
you can email me MusicallyKayla@aim.com
and heres my myspace,
www.myspace.com/kaylaxcoreee
Can I change the skin of the player? Or I must use another player?
Hey... this is driving me crazy!....
Almost all the tutorials expalain how to move the audio player on myspace on the normal profile...what if some one is on the MYSPACE MUSIC PROFILE! What then? It is a differnt player right? I have looked through blog after blog and nobody has asked this with the different "MUSIC PROFILE"....Can anyone help me with the code so I can position a myspace music profile player ...not the normal profile music player!
This code is for the band music player (the player on the artist band profile).
Does it not work for you?
Is it just me, or has myspace decided to completely change how the band players are handled again, not only once, but twice in the past couple of weeks? The old methods im aware of now either dont work, or work differently in firefox and IE. I tried playing around for a few days and the only time I could get any code to work the same in IE and firefox it would remove any other flash objects on the page (sliders, videos e.t.c). There something like 50 pages im responsible for that are now out of action, and have been for weeks. Any idea whats going on?
Are the other flash objects you speak of, ones that you have control over (ones that you yourself are adding to the page?)
If this is the case, you need to give them their own unique class.
Then you can apply override code for each object effected.
MySpace keeps changing their code, related to the music players.
But when I just looked at the code, I see no changes which would break the code, published on this page.
I did retest the code, and it did work.
However, IF you have applied any type of position statement, to a parent container, which contains the div holding the music player, it will cause IE (and not FireFox or other browsers) to treat that container (element) as the positioning reference point.
For example, if you have applied a position statement to shift a table right or left or up or down, and that table is one of the parents to the music player, you will see different positioning in IE and other browsers.
my issue is that putting a top/left value to move the band music player - causes any flash object --in the comments-- to move around too and it ends up overlapping comments. is there anyway to avoid the flash objects in comments being affected?
You need to add this:
table table.friendsComments object {position:static !important}
put that in a style block
Hey Eileen,
I used this code to move the music player on this MySpace design I'm working on: myspace.com/mindyrockoflove
(I replaced <> with - and -)
-style-
.a {position mini player}
embed, object {position:absolute; top:700px; left:50%; margin-left:-165px;}
td.text embed, td.text object {position:static; margin-left:0px;}
-/style-
But now I can't pause the song! Please help.
Caitlin
well take that code out, it moves the player logically off the visible page.
What do you want to do?
Having the player completely off the page, and having the ability to use the pause button, is a problem that I personally do not know how to solve.
But if you just want the player smaller (clipped down to just a pause button) or want it faded out, so the pause button barely shows, that I can do.
For the standard player it can be done here:
Click Here
For the band player, I would have to go in and figure out the code, but the concept would be the same as for the standard player.
Hi i am trying to put my musoic player into my top banner but these codes do not work for me
only this one works
I REPLACED < WITH - AND > WITH -
CHANGE BEFORE ENTERING CODE
-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-
but then i cant move it around :(
any help people
I need help badly....I have positioned the myspace music player perfectly in IE terms, but i cant get the player to position right in FF I need help figuring out where I went wrong in the code.
The real page has been published and im getting more FF complaints then I thought.
The link at the bottom is the test page
Thanks
Hi
Like many of you I have been having problems with the band player being in different positions for FF and IE. Here is my fix, hope it helps.
If you place an underscore in front of your positioning values like:
_top:XXXpx;
_right:XXXpx;
_left:XXXpx;
internet explorer will only be able to read these.
firefox will not read them.
so if you want the player to be 50 pixels down from the top in firefox but want it to be 90 pixels down from the top in internet explorer it would look like this:
top:50px; _top:90px;
This has worked for me so far.
Alan
Hi here is my url so you can check it out on both IE and FF
www.myspace.com/spottydoggmusic
Alan
You should not have to use different values for ie and firefox.
If you use this
object object {position:static; margin-right:0px; margin-left:0px;}
That should fix the problem.
The problem is caused by the extra object, that myspace inserted, for non ie browsers.
It causes any position values to be double applied in non IE browsers.
Can someone please help. I have been trying left and right to get these shows to show. I'm doing a band site myspace.com/doriansdecay and I got everything else to work fine except the shows will not work. What can I do? Can someone send me a code that I can put into my custom div so that they will show up. I'm by no means a pro but I usually can get by but not this with this.
thanks
When I use this code on my band's page to move the music player, it also moves any MySpace Videos we have on the page!
It seems like the thing to do is "change the object class", but I don't know how to do that.
I just have the code to move the player loose in the Bio section like this:
[style]
.myTclassFC table {position:absolute; left:50%; top:2000px; margin-left:-50px; _margin-left:-60; border:3px silver solid}
[/style]
And I have our MySpace video in a DIV like this:
[div class="video"]
(Video embed code MySpace gives you)
[/div]
How do you fix this? :(
Infinite thanks in advance for any help!
since you have a class, for the div, your video is in, you really only need to address it by class
div.video object {style here}
That will override the style for the music player
You should also make sure you override the style for the nested object in the player, or the position will be incorrect in non IE browsers (such as firefox)
i.e.
object object {position:static; margin-left:0px; margin-right:0px;}
THANKS this helped me out so much!
Brandon
Thanks! I'm still a tad lost though. I would put both of those codes you gave me in only the BIO section, right?
Yea, they go in the bio.
However, I haven't tested this code in a while, and myspace so often changes stuff.
Hello, my name is Aaron and I play in a band in California named Abeline. I've been trying for a few days now to resize the player, as because I've seen several bands do the same, such as this band, Renfue.
http://www.myspace.com/renfue
I'm wondering how they got this link and how I'd be able to adjust it to fit our profile, found here.
http://www.myspace.com/abelinemusic
If you can help, that would be very fantastic :)
Thank you again, Eileen. However, putting those codes into the BIO section pushed a lot of things that were hidden under my core div out into the background area and the video wouldn't load at all in Internet Explorer. It also effected the comments/top friends position.
I'm sure the requests for help are overwhelming, but if you could give me an e-mail to send a .txt file of our code to you and perhaps tell me what I'm ding wrong, we'd try to shoot you a few bucks.
You can reach me at wolf.rikk@gmail.com
Thank you either way!
oka this is my profile: www.myspace.com/kameon
i have two problems.
1) my background is not center right ne more.. or my profile moved left some how. idk.
2) i have a section i want to place my music player in.. how can i position it on top of my div in the box?
PLEASE HELP!!!
hi thanks for the help we still have a problem though as once we have re-positioned the music player to top right, instead of shifting everything else up it leaves a gap. as you can see - www.myspace.com/samnanna
is there any way of fixing this problem?
Hi,
I am having a really hard time with the music box on my page. It looks fine in FIre Fox--But is really messed up in safari. How do you make a division for a myspace music box? What is the code for a myspace music box (how do you put it in there) I just want the music box to look normal on the page-
Please help
Here is the page
www.myspace.com/hastingstheband
Hi guys, I have made a myspace band layout:
http://www.myspace.com/fftl
I am trying to hide the player, but when I do that, it resizes all of my embedded objects and i can't individually resize them all to their appropriate sizes. Right now, as you can see there are 2 players on the page. I don't want the one that's down further on the page. Can someone help me out?
Thank you!
Ryan
ok.. i made a div layout for my friend on myspace.v1
but he has a band page..
im aware that there is no who id like to meet section, so where would i put the code for that section?
Hello Eileen! Thanks for the blog, its great. I just cant figure out why my player is not moving to the correct position on Firefox, it is working fine in safari. any help would be highly appreciated.
Felix
Hello Eileen! Thanks for the blog, its great. I just cant figure out why my player is not moving to the correct position on Firefox, it is working fine in safari. any help would be highly appreciated.
Felix
make sure you override anything applied to level
object
for level
object object
(there is a nested object)
I think I may have left out the margin override in the code above
object object {position:static !important; margin-left 0px !important; margin-right:0px !important;}
hey there, PLEASE HELP ME!!!
so i moved the music player in an artist profile using this code right here (replaced <> with --):
-style-
.i {display:none;}
table table td.text div object {position:absolute; top:555px; left:50%; margin-left:-230px;}
table table td.text div object object {position:static; margin-left:0px;}
-/style-
and it works perfectly in ie and firefox. BUT im trying to position a twitter box on the page using a div and it either doesnt show up or gets alligned exactly ontop of the music player.
here is the code im using to try to position the twitter:
-style-
.twitter
{
width: 176px;
_width: 176px;
position: absolute;
margin-left: -251px;
_margin-left: -251px;
left: 50%;
top: 2357px;
_top: 2357px;
background-color: transparent !important;
border-color:rgb(0,0,0);
border-style:solid;
border-width:0px;
margin-bottom: 0;
padding-bottom: 0;
width: 176;
max-width: 176;
height: 176;
margin-top: 0px;
overflow: hidden;
padding: 0px 0px;
z-index:8;
color: 000000;
}
-/style-
-div class="twitter"-
(twitter embed code here)
-/div-
What do i need to do to get this to work?!
PLEASEEE HELP.
the url to the myspace is http://www.myspace.com/project143cure
It would be MUCH appreciated. thanks so much. -daniel
Hey there :)
I want My Player to cover the Band Infro/Profile Picture,Member since etc and I used one of your Codes to do this and it worked great. The only problem was that it moved my other Objects that were on the right hand side of the page over aswell.
I saw that you added a bit for when you do have other objects on your page but im not sure how to give the other things their own classes.
Any ideas on how I can seperate my Player from my other objects further down the page??
http://www.myspace.com/fallenfate1
Cheers
Lee
great page...
i'm having a little trouble here, the same discussed above a couple of times. i believe by chino and notorious.
i can't seem to place the player into a fixed position, which forces it to look completely different on every browser... and even worse if you use a browser that blocks ads... because without the ads, myspace doesn't start with the banner space from the top.
this is my page:
http://www.myspace.com/1000564498
is there any way to get the browser from not floating around, but rather be in a fixed position without using a hide and embed code (which somebody mentioned?
this would be my code right now:
table table td.text div object
{
display:block;
position:relative;
visibility:visible;
z-index:3;
top:180px;
left:-30px;
_top:190px;
_left:-20px;
width:450px;
height:350px;
}
table table embed
{
display:block;
position:relative;
visibility:visible;
z-index:3;
top:260px;
left:-150px;
width:450px;
height:350px;
}
table table table embed
{
position:static;
}
i could hug you tight now man. i was getting so pissed because every code i tried, the player would still pop up. i used your code and positioned the player at a -300000 to make sure that it wouldn't show up. that did the trick. check me out at http://myspace.com/ifyalldontmind thanks again. you are a blessing my friend.
Post a Comment