Myspace has recently updated their code so there are now easy-to-use CSS classes available to hide various parts of your profile.
In any of your info boxes such as “About Me” type in
.profileInfo { visibility:hidden; display:none;}
< /style >
Replace the line inside of the < style > tags with whichever part you want to hide. Also remove the spaces between the less than and greater than symbols (Myspace’s editor won’t display it if I didn’t put the spaces there.)
If you want to hide multiple areas of your profile, just add another code; one on each line.
e.g. Hide Myspace URL and Extended Network
.userProfileURL { visibility:hidden; display:none;}
.extendedNetwork { visibility:hidden; display:none;}
< /style >
Easy as that!
Here is a list of all the various codes I have found. Starting with the left column, then the right column:
Your profile info
.profileInfo { visibility:hidden; display:none;}
Your contact table
.contactTable { visibility:hidden; display:none;}
Your myspace URL box
.userProfileURL { visibility:hidden; display:none;}
Your details
.userProfileDetail { visibility:hidden; display:none;}
Interests
.interestsAndDetails { visibility:hidden; display:none;}
Extended network box
.extendedNetwork { visibility:hidden; display:none;}
Your last few blog entries
.latestBlogEntry { visibility:hidden; display:none;}
Blubs — About Me, I’d like to meet
.blurbs { visibility:hidden; display:none;}
Your friends
.friendSpace { visibility:hidden; display:none;}
Comments
.friendsComments { visibility:hidden; display:none;}









































