mySpace blurbs about me meet
MySpace Blurb Section
Some of the code on this page comes in a complete block, with any needed style tags. This code has a grey background.
Other code is NOT complete, but is instead a single line designed to be inserted into a style block. This code is shown with a yellow/beige background.
Before Using the code blocks, with the beige background, start with this style block:
Explanation of Blurb Table Location and Structure
The table which contains the about me and meet sections is asssigned 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
The above page is best viewed in FireFox or Opera. IE does not recognize the border-spacing attribute, making it more difficult to see the layering. You can download FireFox using the link in my SideBar
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.
(Choose the ones you want and place them inside the style block found near the top of this post)
Remove Blurb Header and the Table Cell it is inside
This is the Red dashed area shown on the diagram.
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:
Remove ONLY the To Meet and keep the About Me
Put this at the END of your About Me
AND
Put this at the TOP of your "Who I'd Like To Meet"
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:
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:
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.
The below is not a complete block, I did not include style tags. You need to place the code into an existing style block.
The Blurbs Section contains the About Me and Meet Sections.
Some of the code on this page comes in a complete block, with any needed style tags. This code has a grey background.
Other code is NOT complete, but is instead a single line designed to be inserted into a style block. This code is shown with a yellow/beige background.
Before Using the code blocks, with the beige background, start with this style block:
<style type="text/css">
{!-STYLE blurbs-!}
</style>
You can now choose the commands you wish to use, and place them in the above block, to create your own blog table style block.Explanation of Blurb Table Location and Structure
The table which contains the about me and meet sections is asssigned 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
The above page is best viewed in FireFox or Opera. IE does not recognize the border-spacing attribute, making it more difficult to see the layering. You can download FireFox using the link in my SideBar
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.
(Choose the ones you want and place them inside the style block found near the top of this post)
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 !}
table.blurbs td.text {display:none}
If you only want to hide the header, and not remove the space it took up, replace {display:none} with {visibility:hidden;}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:
{! remove about and meet headers !}
table.blurbs table td span.orangetext15 {display:none}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 ColoringUnless 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.
The below is not a complete block, I did not include style tags. You need to place the code into an existing style block.
{!!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}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
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
22 Comments:
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!
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.
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
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. =]
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.
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?
Thanks,
table.blurbs {display:none}
Insure it is in a style block.
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?
Thank you so much for all your help, it is very much appreciated
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!!!!!!!!
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
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
i need to remove the "about me" header in a band profile.
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
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.
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 ^_^
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.
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
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)
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>
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.
YOU ROCK!!!
I wish Myspace would make this stuff optional as opposed to having to hunt down resources. Nevertheless, you info really helped
Post a Comment
Links to this post:
Create a Link
<< Home