How to remove the MySpace ad banner

Update:

My myspace account got deleted because of this trick :). So only do this if you are willing to gamble.

How-To:

My idea to remove the myspace ad is simple: Use CSS to move all the myspace crap all the way to the left and then hide the overflow. You will then have a blank canvas as your myspace page. You can then rebuild the page using your own content, or you can be lame and selectively start moving back only the contents you want.

Note: Selectively moving things back is hard, but I have managed to bring back all the important stuff like the message board, “send message” button, and friends list. You can figure out how to selectively move things back on your own by playing with CSS absolute positioning.

This works in Firefox and Internet Explorer 7.

If you want to just remove everything and put up your own message put this into your “I’d like to meet:”

</td>
				</tr>
			</table>
		</td>
	</tr>

</table></table></table>
</div></div></div></div>
<style type="text/css">
body {
margin-left: 2000px;
background-color: FFFFFF;
overflow-x: hidden;
}
.page {
font-size: 60px;
position: absolute;
top:10px;
left:10px;
}
</style>

<div class="page">
Myspace Sucks!<br />
I Hacked Myspace.
</div>

If you want to bring stuff back, try this. REMEMBER TO CHANGE THE FRIENDID, OR ELSE ALL YOUR MESSAGES WILL GO TO MY ACCOUNT.

Put this in your About Me:

 
					</td>
				</tr>
			</table>
		</td>
	</tr>

</table></table></table>
</div></div></div></div>
<styletype="text/css">
body {
margin-left: 2000px;
background-color: FFFFFF;
overflow-x: hidden;
}
.page {
width: 500px;
font-size: 30px;
position: absolute;
top:10px;
left:10px;
}
.big {
font-size: 30px;
}
.message
{
position:absolute;
top:130px;
left:10px;
}
textarea.msg
{
width:280px;
height:50px;
}
.add
{
position:absolute;
top: 100px;
left: 10px;
}
.addfriend {
border: 1px solid &#035;0000FF;
}
</style>
<div class="page">
You suck! Visit<br />
<a class="big" href="http://www.vinhboy.com">
http://www.vinhboy.com.
</a>
</div>
<div class="add">
<a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=110308242" >
<img class="addfriend" src="http://x.myspace.com/images/profile/friend_1.gif" />
</a>
</div>
<div class="message">
message me:
<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment">
<input name="friendID" value="110308242" type="hidden">
<textarea name="f_comments" class="msg">
</textarea><br />
<input type="submit" value="SEND" class="msg1">
</form>

With a little knowledge of CSS you can make this nicer, and please remove any references to me. Goodluck!