Want to easily customize your MySpace profile? You can find hundreds of codes at our MySpace codes and MySpace generators and tweaks sections.
Code to hide the Relationship Status in the details section of a MySpace profile
Question:
Here’s a question from Rosa and other readers - How do I hide my relationship status on MySpace so profile visiting my MySpace profile won’t be aware of my marital status?
Answer:
Thanks for your question on hiding you relationship status on your MySpace profile, Rose. Unfortunately,there isn’t currently a simple solution in order to hide your marital status (as well as other details box entries such as: the Orientation Religion, Zodiac Sign, Smoke/Drink, Children and Education), and thus there seem to be two viable solutions:
- Hide the entire Details box in your MySpace profile. By all means, this is a relatively straightforward solution, however it doesn’t really delivers what you are looking for
- Create a custom MySpace div overlay, which is by far much complicated, and thus recommended only for advanced users.
In any case, i will keep searching for this solution and post it once i have one :)
Got a web or computers related question ? Looking for tech support or for DIY tutorials? Want to tweak your iPod or cellular phone? Leave me your question in the comment form below and have it answered at A Virtual Exit!
Posted by Gili
Like this post? Become a regular and share it with others:


Here is the code I use. It is pretty simple. It hides the entire table on browsers that do not support CSS property selection (e.g. IE), and it hides only the “relationship status” and “here for” rows on browsers that do support CSS property selection (e.g. Mozilla). For reasons not apparent to me, myspace restricts the use of the hash symbol (#) which would give the desired result in all CSS browsers.
style type=”text/css”>
.userProfileDetail { visibility: hidden; display: none; }
TABLE [class=”userProfileDetail”] { visibility: visible; display: table; }
TR [id=”Here”] { display: none; }
TR [id=”Here for:Row”] { display: none; }
TR [id=”Status:Row”] { display: none; }
style type=”text/css”>
.userProfileDetail { visibility: hidden; display: none; }
TABLE [class=”userProfileDetail”] { visibility: visible; display: table; }
TR [id=”Here”] { display: none; }
TR [id=”Here for:Row”] { display: none; }
TR [id=”Status:Row”] { display: none; }
That code does !NOT! hide your relationship status!
It works. thanx u
