This is a guest article by Emma Best from laptopical.com, a great source for those wanting the latest laptop reviews for 2009 . They also have a laptop top list laptop top list to help you choose your next laptop. Emma also has a twitter account, so feel free to follow her here.
Despite the rising popularity of Facebook, Myspace is still one of the most popular social networking websites, with thousands of users and a wide array of features to create your own page.
Unfortunately, as popular as the website is, there are time’s when it can cause you trouble. Personal messages left in your public friends area can lead to friction with a different friend, for example, or reveal info about yourself you’d rather have hidden. Also, there may be certain items on the page you just wish to hide or remove, such as your personal information box.
The codes below will help you manipulate, rearrange, and organize your personal Myspace webpage, including hiding items from the public and rearranging their properties and/or look.
Hide Your Last Login on your Myspace webpage:
If you don’t anyone to monitor when you log in to your account, you can hide the last login feature on the page. To do so, insert the following code into the About Me section:
<style>
.lastlogin {visibility:hidden;}
</style>
Hide Your Friends List on your Myspace Webpage:
If you’d rather have your friends remain hidden to the general public (you’ll still be able to see it), then insert this code anywhere in your personal page to hide the friends list:
<style>
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>
Resize Huge Images
If someone leaves a comment on your page and their profile picture is ridiculously large, you can insert this code anywhere on the page to automatically scale those images to a uniform, reasonable size:
<style>
td.text td.text table table table td a img {width:100px;}
td.text td.text table table table td div img {width:80px;}
td.text td.text table table td img {width:260px; max-width:260px; width:auto;}
td.text td.text table table td div img {width:80px;}
* html td.text td.text table table td img {width:260px;}
* html td.text td.text table table td a img {width:90px;}
* html td.text td.text table table td div img {width:80px;}
</style>
Hide the ‘Contact Box’
Are you getting harassed through your comments box? If so, you can disable it by placing the following code anywhere on your page:
<style>
.contactTable {display: none;}
</style>
Hide Details and General Info Sections
If you’re not planning to have info about yourself, then there’s no point in having the boxes sit there, empty and in the way. Remove them with the two following codes:
Place this anywhere to hide the General Information box:
<style>
table td.text {visibility:hidden;}
td.text td, td.text span, td.text a {visibility:visible;}
</style>
Place this code anywhere to hide the About Me section:
<style>.LIGHTBLUETEXT8{DISPLAY:NONE;VISIBILITY:HIDDEN}</style>
Hide the Search Box on your Myspace Webpage:
Prevent users from searching your page by hiding the search box. Place this code in the About Me section:
<style>
body div table tbody tr td font {visibility:hidden;}
body div table tbody tr td a font, .navbar {visibility:visible;}
</style>



