How to remove the links on myspace.
written by JohnFirst, I'm just gonna put a code here for what a link is so you know.
Regular text link, you would change whats blue to whatever suits your needs.
<a href="http://www.skem9.com">Skem9.com</a>
Image links, change whats blue to whatever suits your needs
<a href="http://www.skem9.com"><img src="http://url.to/image.gif"></a>
Now to start hiding some of the links. If you're just wanting to deactivate some links that 'somehow' showed up within your interests column simply put the following within the column thats showing up as links
<Z>
Some people asks whats all about that tag above, and to tell you the truth.. Its not a code. Its just someway myspace uses to deactivate the links that are within those sections.
To remove the links above the myspace advertisement, add this between your style tags
div table td font {visibility:hidden;}
div table table td font a {visibility:visible;}
To hide the links at the very bottom of your page, add this between your style tags
table td div {visibility:hidden;}
table table td div {visibility:visible;}
To hide the navigation bar "Home | Browse | Search" etc etc, add this between your style tags
div table table td {display:none;}
You can actually hide the navagition bar with the following code, but the one above hides those little lines inbetween each link
a.navbar {display:none;}
To hide the "View all friends" Link
a.redlink {display:none;}
To hide your friends names within your friend space, but keep their pictures
.text .text table table table td a {visibility:hidden;}
.text .text table table table td a img {visibility:visible;}
To hide your friends names in your comments (note, this also hide links within your comments
.text .text table table td a {visibility:hidden;}
.text .text table table td a img, .text .text table table table td a {visibility:visible;}
To hide your friends pictures
.text .text table table table td a img {display:none;}







