MySpaceENHANCE.com

How to hide stuff on your Myspace

What you will learn



While Myspace offers you a lot of different tables to put your stuff in, sometimes you don’t want it to display certain stuff about you. For instance, you may be a bit unsure about it displaying your age, or your comments to friends, so this tutorial will show you each way to hide the stuff on your Myspace. Please note that all the code in this tutorial should be entered into your About Me section.


Hiding your details section will hide the details section which contains your gender, age, last login and your location.


<font style="display:none;">


Hiding your contact table can be useful if you want to add your own contact buttons to your profile.


<style type="text/css">

.contactTable {display: none;}

</style>


Hiding your friends and comments will enable you to hide any communication and who you know on Myspace. This might be useful if you like to keep your conversations private, or you want to keep your friends hidden from everyone. There are three pieces of code you can use depending on what you want to hide.


If you want to hide your friends section only, use this code:


<style type="text/css">

td.text td.text table table table, td.text td.text table br, td.text td.text table .orangetext15, td.text td.text .redlink, td.text td.text span.btext {display:none;}

td.text td.text table {background-color:transparent;}

td.text td.text table td, td.text td.text table {height:0;padding:0;border:0;}

td.text td.text table table td {padding:3;}

td.text td.text table table br {display:inline;}

</style>


If you want to just hide your comments then use this:


<div style="position:relative; height:400px; overflow:hidden; border:0px;"><table><tr><td><table><tr><td>


And finally, if you want to hide both friends and comments, copy and paste this:


<div style="display:none"> <table><tr><td><table><tr><td>



Hiding your extended network/blog area will hide the whole area where your blogs appear, and the rather useless extended network table.


<style type="text/css">
table td table tr td.text table {visibility:hidden;}
table td table tr td.text table table, table td table tr td.text table table td.text {visibility:visible;}
td.text table {position:relative; top:-
180px;}
td.text table table {position:static;}
</style>


Please note this will move the right side of your profile up. If you don’t want this to happen, then change


td.text table {position:relative; top:-180px;}


to


td.text table {position:relative; top:0px;}


Hiding your section headings will remove your About Me, Books, I’d Like To Meet headings. You may wish to do this if you’re wanting to put your own headings there instead of the ones that are provided.


<style>.whitetext12{visibility:hidden; display:none;}.orangetext15{visibility:hidden; display:none;}.lightbluetext8{visibility:hidden; display:none;}</style>

Hiding your URL box will hide the URL you chose for your Myspace (www.myspace.com/ chosen URL).

<style type="text/css">

table table table table div {visibility:hidden;}

div table table table table table div input, div a, td.text div {visibility:visible;}

table table table table div {visibility:hidden;}

div table table table table table div input, div a, td.text div {visibility:visible;}

</style>


Hiding your links will place a blank space across either to top or bottom links. Please note, if you do this, it will be impossible for you or anyone else to sign off from your Myspace page. They will have to go to another page to be able to sign off.


Hide your Top links:

<style type="text/css">div table td font {display: none;}</style>


Hide your Bottom links:

<style type="text/css">a.text, table div font a, table div div {visibility:hidden;}</style>


Hiding your add comment link might be useful if you have your own custom comment box, and you want people to use that instead of having to scroll down to the bottom of your page.


<style type="text/css">td.text td.text td td a, .redlink, td.text td.text td b a {visibility:visible!important;}td.text td.text td a {visibility:hidden;}</style>





Back to Index