I do not have time to troubleshoot people's code. (Hopefully I will again in the future).
I do not have much time to answer questions (but if it is a quick answer, that only takes me a few minutes, I will try to answer).
I really recommend the following site, for myspace customizing questions: Official Myspace Customizing Forum
That is the most reliable source, and the people I know who enjoy helping, and are quite good at it, tend to hang out there.

Wednesday, March 14, 2007

mySpace blurbs about me meet

MySpace Blurb Section

The Blurbs Section contains the About Me and Meet Sections.



Explanation of Blurb Table Location and Structure
The table which contains the about me and meet sections is assigned to class="blurbs"
This class exists on the standard page. It does not exist on the band page.

Please refer to the following myspace page to see how this table is structured.
This is a real myspace page, with style code added to show the parent relationships, laying, classes, and other attributes which can be used to manipulate this table.
Regular MySpace Page Showing Structure, Layout, Classes

Using the key to the left of the page, and looking at the blurb area we can determine the following:

Blurbs is a unique class used only for this table.
Text is a class used in multiple places on the page (but only one place within the blurbs).

The blurbs table is this deep:
table td table td.text table.blurbs

The red td is not needed here, and adds no value, as far as making the address string unique. There are multiple other ways to address the same space.

My favorite is this:
table.blurbs
Or this
table table table.blurbs
The first one tells me that it is a table in class blurbs
The 2nd one tells me the table is at least three tables deep (or has two parents which are tables).
If I consistently use the 2nd one, then I can look at my code and know that the table is exactly three tables deep. (I get lazy and take short cuts sometimes)

This also works:
.blurbs
I dislike the above for multiple reasons.
At least for now, there is nothing else assigned that class. But don't count on it staying this way. MySpace has extended the class use to the table rows and/or cells before.

If you are trying to address the blurbs to UNDO the effect of a command which was used to effect something else, but also effects the blurbs you may want to use an even more explicit address.
body table tr td table tr td.text table.blurbs

Here are some useful code blocks/lines effecting this area.

Remove Blurb Header and the Table Cell it is inside
This is the Red dashed area shown on the diagram.
{! remove blurbs header and cell it occupies !}
<style>
<a class=i href="xiii.us/ms1/">myspace 2.0 tutorials and code by Eileen (or is it myspace 2.0 codes :-)</a>
<a class=i href="http://xiii.us/tou/">terms of use</a>
.i {display:none;}
table.blurbs td.text {display:none}
</style>

If you only want to hide the header, and not remove the space it took up, replace {display:none} with {visibility:hidden;}

Replace Blurb Header with image
<style>
<a class=i href="xiii.us/ms1/">myspace 2.0 tutorials and code by Eileen (or is it myspace 2.0 codes :-)</a>
<a class=i href="http://xiii.us/tou/">terms of use</a>
.i {display:none;}
{! replace blurbs header with image !}
table.blurbs td.text {
background-image:url(URL-OF-YOUR-IMAGE-HERE);
background-position:center top;
background-repeat:no-repeat;
height:60px;
width:400px;}
table.blurbs td.text span.orangetext15 {
display:none;}
</style>
Replace the 60px with the height of your image.
Replace the 400px with the width of your image.
Replace the URL-OF-YOUR-IMAGE-HERE with the url of your image.


Remove the About Me AND To Meet Header
These have a class assigned, orangetext15. These headers are both in a span of class orangetext15. They are the only items in that class at this level
table.blurbs table td
Therefore this will eliminate them both:
<style>
<a class=i href="xiii.us/ms1/">myspace 2.0 tutorials and code by Eileen (or is it myspace 2.0 codes :-)</a>
<a class=i href="http://xiii.us/tou/">terms of use</a>
.i {display:none;}
{! remove about and meet headers !}
table.blurbs table td span.orangetext15 {display:none}
</style>


Remove ONLY the To Meet and keep the About Me
Put this at the END of your About Me
<table class="off"><tr><td>

AND
Put this at the TOP of your "Who I'd Like To Meet"
</td></tr></table>

Remove ONLY the About Me and keep the Blurb header and the to Meet
This one is trickier, because we have to re-classify the Meet area to accomplish this.

Place this code at the BOTTOM of the about me section:
<style>
table.blurbs span.orangetext15 {display:none;}
table.blurbs td.text span.orangetext15{display:inline;}
table.meet span.orangetext15 {display:inline; }
table.meet {margin-top:-20px;}
</style>
</td></tr></table><table class="meet"><tr><td>

Remove the Blurbs header and the About Me Header, and keep the to Meet header.
Put this code at the END of the about me section:
<span class="off">!START Block to remove Blurbs and About Me Header, keeping Meet Header!</span>
<style>
table.blurbs span.orangetext15 {display:none;}
table.blurbs td.text {display:none;}
table.meet span.orangetext15 {display:inline; }
table.blurbs {margin-top:-30px;}

{!if you want to ditch the orange background border!}
table.blurbs {background-color:transparent;}
</style>

</td></tr></table><table class="meet"><tr><td>
<span class="off">!END Block to remove Blurbs and About Me Header, keeping Meet Header!</span>
Blurbs Change All Coloring
Unless you have added borders there should not be any.
The below example re-assigns all coloring, and adds borders. You can change border style, font family, font size, and colors to get the effect you want.
For borders you do not want, that I assigned, you can change to 0px.

<style>
<a class=i href="xiii.us/ms1/">myspace 2.0 tutorials and code by Eileen (or is it myspace 2.0 codes :-)</a>
<a class=i href="http://xiii.us/tou/">terms of use</a>
.i {display:none;}
{!!STYLE BLURBS!!}
{!blurbs: remove all coloring!}
table.blurbs, table.blurbs td, table.blurbs table {background-color:transparent}
{!add border!}
table.blurbs {border:2px solid; border-color:hotpink}
{!add border to about and meet sections!}
table.blurbs td {border:2px solid; border-color:maroon}
{!add background color to blurbs!}
{!if you color the cells different this will act as a border!}
table.blurbs {background-color:darkblue}
{!color blurb cells!}
table.blurbs table td {background-color:lightblue}
{!use different color for header cell!}
table.blurbs td.text {background-color:pink}
{!change color and font of blurbs text!}
table.blurbs td.text span.orangetext15 {color:black;
font-family:comic sans ms; font-size:13px;}
{!change color and font of about and meet headers!}
table.blurbs td span.orangetext15 {color:maroon;
font-family:comic sans ms; font-size:11px;}
{!change color of text font in blurbs!}
table.blurbs td span.text {color:darkgreen;
font-family:comic sans ms; font-size:9px; font-weight:bold}
</style>


Thank you for Visiting; have a Nice Day

For more information You can visit the following:
about me on myspa how to style abot me section.
to meet on myspac how to style meet section.
about me myspace styling change orange to blue
about me
Hide blurbs
Resize Blurbs table myspace

26 Comments:

Anonymous anthony said...

first of all, you are a HUGE help to the myspace community.

secondly, this question is referring to a band page, but this is the closest section i could find to what i'm looking for.

i am trying to replace the band:
bio, upcoming shows, band members, influences etc. text with small custom made images. know of any way to do this?

thanks a MILLION!

8/11/07 10:55  
Blogger Eileen (aka Coboble) said...

Anthony
Just the headers, or the entire section?

The shows are easy to do because they can be isolated,

The bio is possible.

The band members, influences, and other stuff in the general section is much harder, unless you re-create most of that space (which is possible).

I don't think I have anything written up yet on how to do this.
I will try to get something published.

8/11/07 16:07  
Anonymous Anonymous said...

thanks for the speedy reply!

just the headers. i'd like to replace the headers or even just hide them so that i could replace them with a custom image.

an example would be

www.myspace.com/augustburnsred

the band, tour dates & blog, etc are the custom images i'm talking about.

thanks sooooo much!

Anthony

8/11/07 23:46  
Anonymous Alexia. =] said...

Okay, firstly, thanks thanks. =]

Secondly.

I've been using this defualt layout generator.

and it's hard reworking the blurb section. THing is, i dont want it COMPLETLEY gone, i was wondering if i could change the color in any way?

Thanks. =]

12/11/07 17:31  
Blogger Eileen (aka Coboble) said...

alexia
I added a section, to the end of the above article, on how to color it.

Of course you can just color it how you want.

12/11/07 20:03  
Anonymous Anonymous said...

I love your site. You put things into such easy-to-understand terms :)

I did the code for removing blurbs and the cell it is in. Love it. I was wondering is there a way to remove the whole table that holds about me/who i'd like to meet?

17/11/07 13:59  
Blogger Eileen (aka Coboble) said...

Thanks,

table.blurbs {display:none}

Insure it is in a style block.

17/11/07 14:21  
Anonymous Anonymous said...

thank you for such a fast response.

i didnt clarify...

i there a way to remove the table(s) or cell(s) that about me and like to meet is in?

basically i dont want to just hide blurbs, about me, and like to meet. i would like those taken out completely.

is there a code for that?

17/11/07 15:14  
Anonymous Jess said...

Thank you so much for all your help, it is very much appreciated

18/11/07 11:11  
Anonymous Anthony said...

Eileen, never heard back from you on this one so i thought i'd give it a second shot.

To more accurately rephrase I'm looking to replace the table headers in the left table (ie: band members, influences, sounds like, etc) with small custom images.

in another post on this site i've asked about removing that table completely. it sounds like maybe we can kill two birds with one stone here.

is there a way for me to get rid of that table entirely and then secondly to re-create a custom table in which i could put that information? even just hiding it would be huge.


one last question. i'm really enjoying your single column centered band page tweak but the profile picture / pics / vids section and the contact table are small and look funny. is there anyway to get those two on the same row/line so that they don't waste as much space?



thanksssssss!!!!!!!!

5/12/07 00:13  
Anonymous Anonymous said...

Thank you my profile turned out great in FF and IE (PC) I struggle a bit but thanks to all of your code and tips is looking great...thanks again

14/2/08 16:46  
Anonymous Jonathon Baker said...

I'm trying to move the blurbs section and for some reason it also moves the header image I have how do I prevent this?
here's the page www.myspace.com/culturaldissection

2/4/08 23:12  
Anonymous Anonymous said...

i need to remove the "about me" header in a band profile.

16/4/08 21:33  
Anonymous Anonymous said...

This was a huge helppp. I've been trying to change these colors and add some borders for the longest time but of course, nothing ever comes out looking quite the way you expect.

Thanks a lot !
:]x

5/5/08 02:36  
Blogger Victoria said...

i need help!
check this bands site out
www.myspace.com/themorningofrock

how can i replace top friends with an image?
and how can i add those div tables over the regular old myspace tables?

also , id like to know if you know how to stretch out the comments and put an image above them:
like this:
www.myspace.com/thecolorfred

pleas please help me!! im dying to know these things.

28/5/08 19:19  
Anonymous Hillary said...

Hey!

I was wondering if there's any way to change the text of 'so-and-so's blurbs', keeping the orange bar there, and changing the text in it to something else?


Thanks in advance ^_^

1/6/08 19:58  
Blogger u∃∃l!∃ said...

Yep,

But it requires you do one of two things

choice 1) replace the space with a background image that has the needed text

choice 2)
Re-create the blurbs header, AND the about header, after closing off the table and hiding the original text.

1/6/08 21:02  
Anonymous Anonymous said...

http://views-under-construction.blogspot.com/2007/03/myspace-blurbs-about-me-meet.html

I have a Band-My-Space page
I tried every code there is out there to remove the orange box above the about me section. I tried the code from ur page as well - no luck - I get rid of the text inside the orange box but never the dams orange box.
Is there any way you can post something about this ?
I'm literally pulling out my hair :(
Please post the answer on the same page above -
Thank u

19/7/08 22:56  
Anonymous nickhamm said...

hello,
ive been looking everywhere couldnt find this code..tried editing other codes..still couldnt do it.

what i need to do,
is hide EVERYTHING on the left side of a music myspace.
but i still want a space there.
because i want to replace whats there with my own custom images.

(eg: myspace.com/askylitdrive)

21/8/08 20:35  
Blogger u∃∃l!∃ said...

Are you sure you still want space there?

Suppose you removed everything except the blurbs, and then removed all of the headers from the blurbs, and then used that space to insert all of the images you want to put there?

Or I guess you could do this:

<style>
table table td.text table,
table table td.text br {display:none;}
</style>

That makes the whole left side gone, even the space, but this is what i think you want.
You can still put in content, and that content will take up the space it needs.
But you need to get that content, so it is NOT inside the tables you just rendered display:none.
This is done by closing off the tables, creating a div, putting in your desired content, and then re-opening the tables.

At the end of the meet you want to do this:

</td></tr></table>
</td></tr></table>
<div>
PUT IN YOUR CUSTOM CONTENT
</div>
<table style="display:none"><tr><td>
<table><tr><td>

21/8/08 21:05  
Anonymous nickhamm said...

i put in the code but it only made the right side gone.

so let me re-word this.

i'd like to make a div layout.
but i still want the shows/blog/music player/comments there.

21/8/08 22:46  
Anonymous Herb said...

YOU ROCK!!!
I wish Myspace would make this stuff optional as opposed to having to hunt down resources. Nevertheless, you info really helped

26/8/08 08:24  
Anonymous TJ said...

First of all, Eileen you are amazing!

Second,
I'm having the same issue nickhamm is, I just basically want to create a black box that floats above the "member since" "band website""band members" "influences" "sounds like" "record label" and "type of label" sections; right below the myspace URL on a band page. Then within this box I'd like to place personal content such as pictures and other content. Is this possible to create? All the tutorials I've found that create a small "floating" box/DIV are for personal pages and the band page does not have a "who I'd like to meet section".. and I'm not sure what would be equivalent to that on a band page. Any help in this would be GREATLY appreciated.

14/11/08 13:13  
Anonymous Anonymous said...

hey im vanessa
ii have a problem i just want to hide my blurb and about me and i'd like to meet headers but when i did i wasnt able to write in the space. i wanted to do a text wrap around in that space HELP? please?

24/4/09 17:51  
Anonymous Anonymous said...

Hi myspacers friends ;) i'm french , so sorry for my poor english ...
I have a problem in myspace 2.0 and i never saw tuto about that on the web ..

1- For a test I tried to customiz my layout
I put one pic in blurb content (690 x 200 px ) and hide some blocks..
It works perfectly.

2- i would like to slice this pic and make "click zones" in the page
But when i post the new table, all pics are randomly marging ...and are not aligned ...

Can u help for this trouble ???
Thanksssssssss

10/5/09 11:23  
Blogger u∃∃l!∃ said...

Other people have reported similar effects with image maps.
I have not had any time to test them.

You can try using a clear gif strategy, where you put a clear gif over the area you want to link to, and turn that clear gif into a link.

10/5/09 14:19  

Post a Comment

Due to Excessive Spam, I have turned on comment moderation.

Links to this post:

Create a Link

<< Home