mySpace Band Page Shows; structure, addressing, styling and positioning
Band Page UpComing Shows, Styling, Hiding, Displaying on a Div Overlay
Quick links to the content on this page:
Shows General Structure Stuff
Hide Shows
Replace Shows Header With Image
Shows: Sizing and Spacing of Show Table and Columns
Shows: Coloring, Borders, Fonts
Upcoming Shows: Import into Div Overlay
Upcoming Shows: Replace with Image
To see a diagram of the show space please see the following myspace page.
I have added styling to the page to show the table layering and parent relationships, along with classes and other attributes which can be used to manipulate the space.
Regular MySpace Page Showing Structure, Layout, Classes
Shows General Structure Stuff
The shows are this deep:
table table td.text div
However they added in more div elements, at exactly the same level, so now the best way to address the shows is this:
tble table td.text div table
If you have used my div overlay strategy, they can also be addressed like this:
table div.myCoreDiv table td.text div table
Unless you have added a custom div, to the right column, the only other div elements, effected by the address
table table td.text div
are
1) the div in the friendSpace which now contains the view friends links
2) The div of class commentlinks in the comment space
3) POSSIBLY the online now icon div. MySpace sticks this there ever so often, but it has not shown up for over a month now.
4) There are now two additional div elements at this level
- music player div
- a tracking empty div under the music player
This makes the div around the shows, no longer uniquely addressable.
The "Upcoming Shows" header is in class whitetext12.
It is the ONLY element addressed like this:
div table td.text span.whitetext12
(I took a shortcut and started with the div. This can be done if you are certain it is not causing an additional conflict which would not otherwise occur).
If I wanted to be more explicit, thus reducing the potential of conflict I would not leave any layers out of my address:
table table td.text div table td.text span.whitetext12
Leaving out the td between the first two tables does not add any additional risk, since it has no class assigned, and there is ALWAYS a td between two table layers. I leave out the tr for the same reason. It is only when it has a class assigned that it may add value to include it.
(Or when overriding styling which has used the more explicit addressing. This seems to matter more in some browsers than in others. Safari seemed to care more than any other browser I tested with).
Hide Shows
You can put this code at the end of your Bio:
<i class=i>!!START code to Hide Shows !!</i>
<a class=i href="http://xiii.us/ms/band-shows">
myspace band page shows style code by Eileen</a>
<style>
.i, table table td.text div table {display:none;}
{! ONLY if you have NOT used my control spacing code !}
table table td.text object {margin-bottom:-16px}
table table td.text object object {margin-bottom:0px;}
table table td.text table object {margin-bottom:0px;}
</style>
<i class=i>!!END code to Hide Shows !!</i>
Replace Shows Header With Image
First make your own image, using paint, paintshop, photoshop, or other drawing program.
You can then apply the image, in place of the "Upcoming Shows" Header, as follows:
<a class=i href="http://xiii.us/ms/band-shows">
mySpace band shows replace header code by Eileen
</a>
<style>
.i {display:none;}
{!hide coming shows header!}
td.text div table td table td.text span.whitetext12 {visibility:hidden;}
{! place image to use as new header !}
td.text div table td table td.text {background-image:url("http://i32.tinypic.com/znvj45.gif");
background-position: left center;
background-repeat: no-repeat;
}
</style>
Replace my image with your own (or you can use mine if you want).Place code at the bottom of the Bio section.
Shows: Sizing and Spacing of Show Table and Columns
Once portions of the page have been rendered {display:none} and the shows have been rendered {display:block} the sizing and spacing which was previously applied is GONE. It is very tedious to get it back.
Commands were used, to get the original spacing, which do not necessarily have a cross-browser css override.
To get reasonable sizing and spacing I must now hard set every detail of the show space.
First I set the width of the complete space:
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}
{! set width of shows !}
table table td.text div {width:auto}
table table td.text div table,
table table td.text div table td {width:380px;}
{! default undo on inner cells and tables !}
table table td.text div table table td,
table table td.text div table table td table {width:auto}
{! unDo on friend and comment inner divs !}
table table.friendSpace div,
table table td.text table.friendSpace td.text div,
table table.friendsComments td.text div {width:auto}
</style>Set the width of the inner show cellsFirst I do the Header row:
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}
{! set Upcoming Shows Header width !}
table table td.text div table table td.text {width:290px !important;}
{!-the below line has a necessary hard to explain effect-!}
table table td.text div table table td {width:25% !important}
</style>Now for the date,time, venue, and location columnsI can not address the actual cells individually, so I will concentrate on the text inside them.
I do a sort of set it all, and gradually override
i.e.
table table td.text table table td font
Effects all three columns.
However I can set it, then override for venue and date/time, causing it to control the location width. If it is too large, the location may overlap the edge of the div, so be careful with the values.
table table td.text table table td font a
Only effects the venue.
table table td.text table table table td
cells containing date and time. There are two of these cells in a single row in a table. If I set them to 70% the first one (the date) will take up the 70% leaving less space for the time.
table table td.text table table table td font
Effects both date and time. I end up setting this to auto, because any hard value set will try to effect both the date and time. I need something to override what I set for location.
I ended up with this:
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}{!-set width of location column -!}
table table td.text div table table td font {display:block; width:130px !important}
{!-set width of venue column-!}
table table td.text div table table td font a {display:block;
width:120px !important; padding-left:5px; padding-right:5px;}
{!-UnDo above on view all-!}
table table td.text div table table td span.whitelink font a {display:inline; width:auto !important}
{!-set width of date time column-!}
table table td.text div table table table {
width:128px !important; }
table table td.text div table table table td font {width:auto !important; padding-right:1px; padding-left:1px}
table table td.text div table table table td {width:70% !important;}
</style>Shows: Coloring, Borders, Fonts
The below color styling assumes that you have turned all of the default coloring transparent. If you have not add this:
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}
{!remove upcoming shows default coloring!}
table table td.text div table,
table table td.text div table td {background-color:transparent}
</style> Border Around Columns
I get the best results if I form this border with background coloring. I place the border color as the background at one level, and then set another background color at a deeper level. I ended up getting the best result with this combination:
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}
{! create column border using background color !}
{! inner border color !}
table table td.text div {background-color:pink}
{! inner background color !}
table table td.text div table table td {background-color:lightgrey}
</style>
Shows: Set the Font size and Family
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}
{! set show font size, font color, family !}
table table td.text div table * {color:maroon; font-family:comic sans ms; font-size:11px;}
{! set font size of date and time smaller !}
table table td.text div table table table * {font-size:9px;}
</style>Upcoming Shows: Import into Div Overlay
IF you used my div overlay strategy, which allows for the import of the top left content (profile views, profile image, last login, location) the below code block will NOT work. You need to use the code block I provided in the article for that specific div overlay strategy.
Otherwise, IF you are using a div overlay strategy, which does NOT place your custom divs, so they are at or below this level:
table table td.text div table
The below code should work for you.
<a class="i" href="http://views-under-construction.blogspot.com">
mySpace Band Shows Code tutorials by Eileen</a>
<style type="text/css">
.i {display:none;}
{! recover and position shows !}
table table td.text div table {display:block;}
table table td.text div {position:absolute; top: 550px; left:32px;}
{! Reverse effect on Friend and Comment Divs !}
table table td.text table.friendSpace td.text div,
table table.friendsComments td.text div {position:static;
overflow:hidden; height:auto}
</style>IF the above code does not work, please check with the source of your div overlay strategy to see what they recommend.
Replace Shows with Image
You can place this code in any slot, that accepts html, such as the Bio.
<a class=i href="http://xiii.us/ms1">MySpace Band Page Code Tutorials</a>
<style>
.i {display:none;}
table table td.text div table {background-image:url(http://i30.tinypic.com/2uiu048.png);
background-position:center top;
background-repeat:no-repeat;
width:191px; height:178px;}
table table td.text div table table {display:none;}
</style>
Replace my image with your own image.Replace my width and height with the width and height of your image.
Labels: mySpace band shows
78 Comments:
Re: Shortcuts menu is back.
I have a feeling I'm commenting in the wrong place - if so, please delete this E!
I agree with you - I think MS does NOT want the shortcuts dropdown hidden! lol... My best guess is that Google is paying big bucks for it. Somebody is, I'll bet.
I couldn't find your email, but I discovered how to control the About Band on the bandpage. Actually by experimenting with your code for the show info. The only thing is that you have to use your show info code after the about band code or it will effect the show code. I had it not show the About band title and instead have an image in it's place. I also have code to control the width. You can of course add your own background, color, border, etc to that part. Here is the code:
table table td.text table td.text span.orangetext15 {display: none;}
table table td.text table td.text {background-image:url("http://i205.photobucket.com/albums/bb154/gedsparrow/TSH/history.jpg"); height: 138px; background-attachment:scroll; background-position:top left;
background-repeat:no-repeat; background-color:transparent; padding: 0px !important;}
table table td.text table table {width: 450px !important; padding: 0px !important;}
Oh, just so you know, I put an image in place of the Show Info header. I think I fiddled with your code for a long time to figure that out. Here is that code to help people with that. You have to put display none for the header, but the box behind it has a separate code and that is where I put the image in. Same thing with how I did that with the About Band header.
Most of this shows info code is your code, just tweaked for that part (it wouldn't let me put the span class off code in this message):
{!-Border around shows table-!}
table table td.text div table {border:1px solid; border-color:red;}
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:transparent;}
table table td.text div table {background-color:transparent;}
{!-form inner borders with background color-!}
table table td.text div table table {background-color:transparent ;}
table table td.text div table table table {background-color: transparent;}
{!-style text-!}
table table td.text div table table td.text span.whitetext12 {display: none;}
table table td.text div table table a {background-color:yellow; color:red;}
table table td.text div table table span.whitelink {display: none;}
table table td.text div table table table font{color:yellow !important; font-size:11px; font-weight:bold;}
table table td.text div table table font {color:white !important; font-weight:bold; font-size:12px;}
table table td.text div, table table td.text div table {width:450px !important; padding: 0px;}
table table td.text div table table {width:100% !important;}
table table td.text div table table td {width:33% !important;}
table table td.text div table tr td table tr td.text {width:100% !important; height: 138px !important; background-image:url("http://i205.photobucket.com/albums/bb154/gedsparrow/TSH/concerts2.jpg") !important;
background-attachment:scroll; background-position:top left;
background-repeat:no-repeat; background-color:transparent; padding:0px;}
Heather
Thank you
I am helping a friend with a = band page and I'm fairly new to divs.
Page!
I've been working with your code to get mine the way I want it, and it works great for firefox on my Mac, but internet explorer is completly different and looks terrible.
Kenny,
The link you provided does not work.
MySpace tells me the page does not exist.
hey
your codes and tips really helped me alot so far. defintaly more than any other ive been able to find.
i created my page and it looks (in my opionion) really great in firefox
but in IE.. its HORRIBLE.. i have no clue what to do to fix it to where it looks good in both?
i was wondering if you could please help me fix it in IE like it is in firefox
my link is:
http://www.myspace.com/bigteeyoungice
please and thank you :)
is there a way to have the shows background transparent AND have the friends show up ina div? It seems you can only have one or the other - if I use the transparency code it makes the friends disappear; if i dont im stick with blue white color for the band shows; any help?
Hey, I am editing my bands myspace and I want to cover the Display picture, members, influence etc... So I can then do something like this band has done.
http://www.myspace.com/thetortureofcomacine
I have the images for the Add, Merch etc.. I just need to know the codes to put them there and also need to know how to cover the display picture and that general section like they have.
Hi!Im italian and my english is not good!My question is:is possible hide the member since and the general info in a band myspace?Thanks
Yes Gabriel, it is.
But it is a lot of work, because there is no class assigned to this space.
You can look at this, it might help:
Band Page General Section
(My Italian is probably worse than your English).
Hey, seems like myspace added some kind of new top menu, I just saw it today and it kinda messed up my custom profile...is there any way to hide that one?
Hi!
Seems like myspace added some kind of new top menu, I just saw it today and it messed up my custom profile...is there any way to hide that one?
thx!
Hey, great blog, very helpful!!
Quick question:
I've been using some of your code to customize my band page, and everything looks great, except the text for my "upcoming shows" has disappeared. Any idea how to fix this?
Thanks,
-C
www.myspace.com/thinline
Hi all
First I wanna say that all your tutorials are great !
thanx a lot for helping
I have a little question...
I set up the font colors that I want in the shows table (red) and i want to keep the same color all the time, what I mean is that used links becomes blue.. is it possible?
thanx a lot.
two questions!
a. Do you know how to just move, the Upcoming Shows and the Blogs on a Band Profile?
b. Do you know how to load the comments on a flash file like in this myspace www.myspace.com/allison ?
I really appreciatte your time and what you've done!
camilo_nino@live.com
hey you said you wanted some good music for your test myspace page that has over 20000 hits, feel free to use ours, I'm sure you'll dig it. myspace.com/thedeadeyesoflondon
is there anyway to import my upcoming shows from myspace to my website?? if so please help.
biggroc85@gmail.com
Yes,
But the way I would do it requires php.
Do you run php on your website?
It would also take some time to write, and I don't really have time to write this sort of thing for anyone right now.
hey! i am having a big problem...
so i made a background and then a layer to go over it for my basic info, but i am having trouble getting the myspace music player on the top of the second layer. (it is a band profile) the temporary profile i am using is http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendID=227652663 where i am testing my codes. i have not added any links in yet so nothing is clickable. i am just wondering how i can get the standalone player in front of all other tables and layers, any help?
PS i am also having trouble with just adding regular images over my image. So I am basically having problems with just adding stuff over my image and I dont really want to mess with the position of it because it might move everything around and as of right now it is perfect in Netscape and Internet explorer, except for the fact images wont go on top. Im sure there is a simple code to fix this, but i dont know it. If you need to see the code i have for the background and other layer let me know and I will send it.
well...idk when i will get a reply to this so if anyone knows how to move the standalone music player on a myspace band page to the front of a layer and images to the front please let me kno i am having trouble and i have the code to show what i have so far. if you dont reply here with the answer please e-mail me at spiketop2oo5@yahoo.com because i really want to get to the bottom of this.
You need to put your z-index to 9.
hmm are you sure i was thinking that but i didnt try it yet... ill let you know thanx
hmm changing the index to 9 didnt work.... this is the code i have... i put the class part to show where i started my own codes underneath it.
the 1st code is for the red link on the right, which i will reposition later once it is over the middle image
the second code is the music player which is still on the left under the middle layer
the 3rd code is the code for the middle layer
and the 4th code is the code for the background image
all i need is these codes altered so the images and standalone player will be above codes 3 and 4
please help =/
*these codes start under the custom block section
****i couldnt post the codes directly so instead i copied them onto a picture file so you can see them, click the link to see my codes
http://i37.tinypic.com/10d9jc3.jpg
i kinda forgot the myspace link
incase u want to see what i currently have
http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=227652663
myspace id = 227652663
cuz i dont think it finished the code
jay needs help plz! =(
Try z-index: 9 !important;
it didnt work =/
maybe if u look the code and you might find something wrong with it
code in image form:
http://i37.tinypic.com/10d9jc3.jpg
or if anyone knows how to just put a background with another layer over it, have the standalone player on the top with images over the layer, please let me kno
spiketop2oo5@yahoo.com
this is so difficult!
Do you have your position set to relative or absolute? You need to have it set to one of those for z-index to work. And make sure you use the !important command for that too.
i tried absolute and i tried relative and right now it is what i had it before because it didnt change it. im not tryna be annoying and complain its jus not changing. i might need to start it from scratch if nothing else would work im just not sure how id go about it
I have an idea. Maybe if people who are better at layout making and coding read it as a problem such as this:
I have a background image, the link to it is http://i34.tinypic.com/11adeh0.jpg
--- It is 1600 wide and 1200 px tall.
I have an image I want to place over that background image, the link is http://i36.tinypic.com/spusrc.jpg
---It is roughly 900px wide and 1200 px tall
I have a standalone player i want to show on top of these layers and it is a band page just like an fyi I guess.
I also have images I want to put over all of these things (except over the standalone player) such as this
--- http://x.myspace.com/images/clear.gif --- these clear images that I can use to make clickable links.
Maybe if people read it like that can solve it that way, or read my problem the other way and can fix it.
I hope I would really appreciate anyone that can solve this problem and would return the favor any way possible
thank you,
-Jay (spiketop2oo5@yahoo.com if u need to contact me there)
Jay,
I see a few problems.
1) You did not put your coreDiv inside the Band Members or Influences.
You need to put it in one of the general sections, not in the bio.
The idea is that the music player will end up logically inside the core div.
2) Take out any positioning code you got with the Katamari generator.
Take out all of this:
.katamari DIV generator { http://www.abrax.us/Katamari/ContentGen.php }
.katamari {adjust the TOP and MARGIN-LEFT to position it}
.toxikbox {width:900; height:1200;}
.toxikbox {z-index:9; !important; position:absolute; left:50%; top:-340px; margin-left:-450px;}
.toxikbox {background-color: ;}
Take out the div you have wrapped around the img tag.
Keep the image tag.
You want that inside the coreDiv.
3)
Once you have fixed these things, then you will be able to position your player like this:
table table td.text object {position:absolute !important; top:180px !important; left:110px}
I didn't even need the z-index, because by putting the coreDiv inside the influences, the player object is logically inside the div, and after the core image.
That way it layers itself on top.
Thank you very much!!!
That solved about 90% of it, because I got a lil confused on some parts.
The changes I made were:
I moved all of the "custom block" code like the core out of band member bio and put it in influences
I took out everything around the image so it is just
http://i37.tinypic.com/jz8zsi.jpg
I took the music code u had and put it under the standalone code i had
But then I got stuck on adding images over the code like say a clear image to be used as like a link
Here is a control+print pic again of the code i have since it doesnt always show up on the site
http://i34.tinypic.com/4g6vcg.jpg --- u can see the new code after what u said is there
I think i changed it as much as I was supposed to, but got confused on that last part I said
PS, not that its a big deal, but it no longer lines up correctly on Netscape, but no one but me uses that anymore lol
I use both IE and netscape but I prefer it to work in IE anyways
thank you again, and if u can fix this last part that i may have missed when u said it, i will be so happy
I think I will write a tool to create the clear gif links for you.
Can you give me a few days.
I explain the process in my div overlay article, but people have trouble with it, as my ability to explain is not as good as my ability to code.
Wow that would be awesome I would appreciate that so much! Ya sure I mean i will check back in here and see whats up and stuff cuz I go on this site for all my codes but ya I can wait it will def be worth it thank you very mich. If you cant send the codes through this you can email me spiketop2oo5@yahoo.com Im not sure why they wouldnt work now like I had them work before. On my regular myspace, myspace.com/toxik I have a practice layout and all the clickable images are really part of the background and I just used the clear image code you had before, but if it wont work for this one then ya Ill take a new code. It will be very appreciated tho if you can do that =)
ps - when you make this new code for the clear links to go over the images I am going to have as links, will they be compatible if i were to make hover images over the links too? just wondering because i was thinking about making the text kind of change when hovered over the pre embedded images already on the layout and didnt kno if the code would be affected by it
hows the code coming...? did you figure out the code to make clear gifs on my code yet? take your time, i was just checking =)
I did a little work on a tool I started, but I didn't finish it.
So much to do, so little time.
awww its ok i was just checking, take your time. i will be happy when it is finished =)
ps i do appreciate it
Hi E...
I have been working with your code for a couple weeks now. For the last week I have been trying to figure out how to move my [Blog] and [ABOUT] areas. They are sitting right over the myspace advertisement. I really dont need the [ABOUT], but I would really like to have the [BLOG] on there incase i ever have anything worth while to say. I think i had seen a line of code that HID it, but I cant find it to use it to move it. My page is all scrambled up right now, but I know how to put all the pieces together once i save my [BLOG].
Thankyou E- God of the myspace DIVs
hehe
Please help me, cause i will go around and around forever without your help.
thankyou
Hi E...
I have been working with your code for a couple weeks now. For the last week I have been trying to figure out how to move my [Blog] and [ABOUT] areas. They are sitting right over the myspace advertisement. I really dont need the [ABOUT], but I would really like to have the [BLOG] on there incase i ever have anything worth while to say. I think i had seen a line of code that HID it, but I cant find it to use it to move it. My page is all scrambled up right now, but I know how to put all the pieces together once i save my [BLOG].
Thankyou E- God of the myspace DIVs
hehe
Please help me, cause i will go around and around forever without your help.
thankyou
Hi E,..
I posted the above question on moving the [BLOG]. I found one of your tutorials where you explained how to do it.
The Tutorial was: [moving and stylizing the Blog]
The 2 lines of code i am using to just move it are...
{!-display and position blogs-!}table table table.latestBlogEntry {display:block;}table table table.latestBlogEntry {position:absolute; top:313px; left:15px;}
thankyou
how do i get the upcoming shows box if I have a regular myspace
they dont have shows in a regular myspace...
uh oh we have problems!
they completely changed the look of the music player and i think it messes up the codes!!!
Yep they have.
Maybe it is time for me to find a new hobby, this is just getting tedious.
Now if only they would give the div they added a class, and/or give the shows div a class, these changes would be much more appreciated.
well they will have to figure something out because i went on music myspaces where the whole page is customized and their music player isnt even showing up so i think they will realize they need to do something because all the big name ppl with cool pages have no music now
I'm looking foward to see your solution to new myspace layout.
I had finally been able to get my band profile just as i wanted thanks to you, but now i have the music player in the shows place.
www.myspace.com/ventosdaliria
By the way many thanks for helping get my profile just as it is now.
your the best i could see my comments and freinds and i used your code and it worked i just had to take the top banner sizes of and it all worked out thanks for your help
Your istructions and time involved are a real help so thanks first!
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?
hello i was wondering if someone can help? i put th code in to get my comments and freinds list back on my music page an the comments goes to the left side for some raeson can someone help me get it back to the right? thank for your time
Eileen! Myspace music codes have been fixed a little. The music box is now positioned in the spot I wanted it even with the new look without me even changing the code. AND the images are appearing over the core image which I really wanted. But I am still having a problem. I tried your hover image code, and I am having trouble positioning them. If you would like, I have a temporary page (the same as before) where I am testing the code, http://www.myspace.com/djfirepiff and the buttons that are spaced out from eachother are part of the core. the ones lower that are bunched together are images over the code. I cant move them and space them out like they are on the core, any help? If you are confused on exactly what I mean let me kno. =)
*Id probably ignore lookin at the page because I keep changing the code of the images and I might just go with a clear image and no hover but if you know how to efficiently space the hover images out that would be cool if not its ok
Jay,
I meant to get back to you and help you out, and then myspace change their code, and I sort of got flooded with questions (email, myspace messages, and on various forums).
So I sort of lost track of the people I was going to help as soon as I had time.
its ok. for the most part i have my page as i would like it. the link if you want to see is www.myspace.com/toxik I have the clear images over the buttons because the buttons arent really there, they are part of the core image. I was going to make the same image over the buttons and change the color of the text for an effect but i couldnt position them correctly even using your codes. its ok tho, how it is now is fine. i just wish it worked in netscape also because i prefer netscape. its perfectly fine tho i am just glad i got your advice and yo helped make my codes work properly. thank you very much! =)
do you know if you can copy the music box from a band profile and copy/paste it to another profile? I did it before they changed the music myspace and it still has all the old ones and says 0 plays. I havnt tried it but I was wondering if you knew about any new codes they might have for it.
im trying to get a layout to work and everything is going great except this friends and comments issue.
im trying to place the top friends and comments tables in the last black box on this profile (its a test page)
myspace.com/city5studiostest. i cant seem to figure it out ive been searching around for like 3 days trying to figure out what im miss.
one of the codes gets the comments to show up and the friends space titles to show up but no pics show up and i cant align anything
without it messing up. it only moves pieces of the comments titles and leave the comments them selves where they were.
im gettin rather frustrated if anyone can help it would be really awesome
Hey, I'm having a bitch of a time with this.
I'm trying to move the "Upcoming Shows" section.
In Firefox/Chrome/Safari I'm able to move the "Upcoming Shows" box anywhere I want, will show over my Div layout, 100% success.
BUT in IE the "Upcoming Shows" is stuck centered on the page right above the "Top Friends"
I can't move it an inch and I have a feeling that it will be hidden under my div layout when I am able to move it.
Please, anyone, if I could get some help with this that would be great.
URL:
http://www.myspace.com/test2312eqw
Thanks!
Hi, thanks so much for this site it has been a massive help in so far building a page but i am having a few problems - whilst I'm working out how to do things can anybody help me?
I literally want this image
http://www.spclive.co.uk/FlyerImages/spc-2008-12-19-PeopleInPlanes.jpg
as my whole page with nothing else shown, no friends, no comments, no blog no nothing. just this image for the time being whilst I work out how to build a page properly.
can anyone help me please?
I thank you in advance
Steve
schteev@hotmail.com
Heather/Eileen
WHen I use this code, it DOES Give me the header for the ABOUT section but it also puts the same header on MYFRIENDS SECTION and screws that section up...
table table td.text table td.text span.orangetext15 {display: none;}
table table td.text table td.text {background-image:url("http://www.growmyvision.com/CLIENTS/TRUE_NATURE/TN_ABOUTheader01.jpg"); height: 50px; background-attachment:scroll; background-position:top left;
background-repeat:no-repeat; background-color:transparent; padding: 0px !important;}
table table td.text table table {width: 400px !important; padding: 0px !important;}
1. How can I only put a different image headers over the current text for for GIGS (I saw the tutorial), UPCOMING SHOWS, ABOUT, FRIENDS, & COMMENT sections??
-Gg info@growmyvision.com
Hi, PLEASE PLEASE PLEASE can someone help.
When i use the code below (pasted from this page), i get a border around the SHOWS and the MUSIC PLAYER. I only want it round the SHOWS!!
Can anyone tweak it at all.
Would love some help. Here's the code...
.i {display:none;}
{! border around outside of shows !}
table table td.text div {border:3px magenta solid;}
{! unDo on friend and comment inner div!}
table table.friendSpace td.text div,
table table.friendsComments td.text div {border:0px}
My email address is gavtroon@yahoo.com. CHeers!
That is because I have not had a chance to update all my code to reflect the numerous myspace core code changes.
You now have to add the border to the table level, not the div level.
table table td.text div table {border: ...}
thank you so so much!
yo i wrote a code for my myspace but it makes my standalone player disappear can any one help with this here goes my myspace
www.myspace.com/mykesosa
This post has been removed by the author.
I want to add a z-index,
where in your code could I add this?
I want to shift the "Upcoming Shows" section further down, because I replaced the title with an image and the image does not show properly because there's not enough space.
my myspace: www.myspace.com/shanmalaika
how do I do this?? please help!!!! thank you!
Can someone help me with this?
I have pretty much everything done just cant seem to get the upcoming shows to show up.
Can someone look and change what I'm doing wrong and add the stuff I need for the shows?
This is my code so far:
(In the Musician Bio Section)
.bbzs1 {content:"Body Properties";}
body { background-color:000000;}
.blackbackground
{background-color:000000; scroll:none; border:0px solid; border-color:ffffff; width:1000px; height:3400px; overflow:none; position:absolute; z-index:0; left:50%; top:0%; margin-left:-500px; margin-top:0px; visibility:visible;}
.links
{background-color:transparent; scroll:none; border:0px solid; border-color:ffffff; width:1000px; height:1000px; overflow:none; position:absolute ; z-index:1; left:50%; top:0%; margin-left:-500px; margin-top:100px; visibility:visible;}
.musicPlayer {visibility:visible;}
table table td.text div object
{height:240px; width:315px; position:absolute !important; z-index:2; top:0px; left:50%; margin-left:-155px; margin-top:2080px;}
table table td.text div object object
{height:240px; width:315px; position:static !important; z-index:2; top:0px; left:50%; margin-left:-155px; margin-top:2080px;}
.infolinks {background-color:transparent; scroll:none; border:2px; border-color:ffffff; width:188px; height:200px; overflow:none; position: absolute; z-index:1; left:50%; top:0%; margin-left:-336px; margin-top:1312px; visibility:visible;}
.echo {background-color:transparent; scroll:none; border:2px; border-color:ffffff; width:188px; height:200px; overflow:none; position: absolute; z-index:1; left:50%; top:0%; margin-left:-400px; margin-top:1435px; visibility:visible;}
.myspacelinks
{background-color:transparent; scroll:none; border:0px; border-color:ffffff; width:169px; height:198px; overflow:none; position: absolute; z-index:1; left:50%; top:0%; margin-left:-383px; margin-top:2100px; visibility:visible;}
.designlayoutphotos
{background-color:transparent; scroll:none; border:0px; border-color:ffffff; width:159px; height:131px; overflow:none; position: absolute; z-index:1; left:50%; top:0%; margin-left:230px; margin-top:2130px; visibility:visible;}
.members {background-color:transparent; scroll:none;
border:0px solid; border-color:ffffff;
height:800px; width:450px; overflow:none;
position:absolute; z-index:3; left:50%; top:0%;
margin-left:-530px; margin-top:1600px; visibility:visible;}
.shop {background-color:transparent; scroll:none;
border:0px solid; border-color:ffffff;
height:225px; width:450px; overflow:none;
position:absolute; z-index:3; left:50%; top:0%;
margin-left:-530px; margin-top:3100px; visibility:visible;}
.showheader
{background-color:transparent; scroll:none;
border:0px solid; border-color:ffffff;
height:73px; width:301px; overflow:none;
position:absolute; z-index:3; left:50%; top:0%;
margin-left:-250px; margin-top:3300px; visibility:visible;}
.schedule
{background-color:transparent; scroll:none;
border:0px solid; border-color:ffffff;
height:1042px; width:350px; overflow:none;
position:absolute; z-index:3; left:50%; top:0%;
margin-left:-250px; margin-top:5000px; visibility:visible; }
.promo {background-color:transparent; scroll:none;
border:0px solid; border-color:ffffff;
height:1042px; width:360px; overflow:none;
position:absolute; z-index:3; left:50%; top:0%;
margin-left:-750px; margin-top:3300px; visibility:visible;}
.contactTable {display: none;}
.friendsComments {position:absolute !important; z-index:4; left:50%; top:0%; margin-left:-500px; margin-top:6700px;}
.friendSpace
{position:absolute !important; z-index:4; left:50%; top:0%; margin-left:50px; margin-top:6700px;}
.latestBlogEntry {display:none;}
a.text, table div font a, table div div {visibility:hidden;}
.bbzs2 {content:"Table and Section Properties";}
table, tr, td {background:transparent; border:0px;}
table table table {background-color:000000;}
table table table {
border-width:0px;
border-color:000000;
border-style:solid;
}
table table table table {border:0px;}
table table table {width:300px;}
table table td.text table {width:auto;}
table table td.text table, table table td.text table td {width:100%;}
.bbzs3 {content:"Text and Link Properties";}
input {background-color:transparent !important;}
td, span, div, input, textarea, a, table td div div font,
div table tr td font {font-family:Verdana !important;}
td, span, div, input, textarea, table td div div font,div table tr td font {color:ffffff !important; font-size:9pt !important;}
.nametext {display:none;}
.whitetext12 {visibility:visible;}
.lightbluetext8 {display:none;}
.orangetext15 {display:none;}
.blacktext12 {display:none;}
.blacktext12 span {display:none;}
.redtext {display:none;}
.redbtext {display:none;}
.blacktext10 {display:none;}
.btext {display:none;}
a {color:ffffff !important; font-size:9pt !important;text-decoration:none !important; text-transform:none !important; font-weight:normal !important; font-style:normal !important;}
a:hover {color:ffffff !important; text-decoration:none !important; text-transform:none !important; font-weight:normal !important; font-style:normal !important;}
.bbzs4 {content:"Other Properties";}
img {border:0px;}
.blacktext10 {width:260px; display:block;}
Eileen,
please help! I am trying to add back in the "shows" on my music profile. However, everytime I do it the music player gets screwed up. I don't know how to separate the two so I can place them where I want them.
What should I do?
www.myspace.com/listenupdirtbag
please help
Hi!...I found this whole div overlay article to be very helpful, I still have a question though...
I'm pretty much done with the layout except for the shows section that is not showing up...I've tried many different things but still not working. I will appreciate any help...
Thanks,
Giova
http://www.myspace.com/shovanito
I really need some help here. I have the perfect profile layout set up at http://www.myspace.com/onlyelephantscandream, but the problem is is the shows, news (about me) section and my friends are partially being coverd. I want to be able to move the entire thing over to line up perfectly with the music player on my page. Can Someone show me a code that could fix this??!?! It has been driving me insane!
-Nick
I don't have time to help anyone right now, Sorry.
A good forum for getting help in the myspace customizing forum.
hi
i've seen sons of nero are making layouts with a witdh of 900px for the content of the space
to do this they have to move the "right column" (i mean player, shows, the about content, and friends) some pixels (i think 35px) to the right
how do they do that?
that's an example:
myspace.com/blessthefall
thank you all
stefano
hey i need help with this layout im trying to fix. i have everything fixed but the shows are being overlapped and i need a code to JUST move the shows section and everything else down with it. can you help me?
here's the page im working on.
www.myspace.com/heycaesar
Post a Comment
Due to Excessive Spam, I have turned on comment moderation.
Links to this post:
Create a Link
<< Home